-
Notifications
You must be signed in to change notification settings - Fork 0
37 lines (34 loc) · 835 Bytes
/
testing.yaml
File metadata and controls
37 lines (34 loc) · 835 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: automated_testing
on:
push:
branches:
- main
jobs:
#apitests:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v3
# - uses: actions/setup-python@v4
# with:
# python-version: '3.8'
# - run: pip install -e .
# - run: chmod +x ./meteortools/tests/*.sh
# - run: ./meteortools/tests/runTests.sh
rmstests:
runs-on: ubuntu-latest
container:
image: docker.io/markmac99/ubi8:latest
env:
MYENV: foo
ports:
- 22
- 443
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.8'
#- run: pip install -e .
- run: chmod +x ./meteortools/tests/*.sh
- run: ./meteortools/tests/runTests.sh
- run: (echo $MYENV ; python -V )