-
Notifications
You must be signed in to change notification settings - Fork 0
46 lines (42 loc) · 1.08 KB
/
tests.yml
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
37
38
39
40
41
42
43
44
45
46
name: Test Package
on:
push:
pull_request:
schedule:
- cron: '0 0 25 * *'
jobs:
flake8_tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install flake8
run: pip install flake8
- name: Run flake8
run: flake8 .
docker_tests:
runs-on: ubuntu-latest
strategy:
matrix:
os: [debian12, debian11, debian10, ubuntu24.04, ubuntu22.04, ubuntu20.04]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- name: Update bash files
run: |
chmod +x .ci/run.sh
chmod +x .ci/install.sh
- name: Build the docker
env:
OSYS: ${{ matrix.os }}
run: docker build -t ndts .ci/${OSYS}_py3
- name: Run the docker
run: docker run --name ndts -d -it -v `pwd`:/home/tango ndts
- name: install tango
env:
OSYS: ${{ matrix.os }}
run: .ci/install.sh ${OSYS} 3
- name: run tests
run: .ci/run.sh 3