-
Notifications
You must be signed in to change notification settings - Fork 25
42 lines (38 loc) · 1.12 KB
/
uxas-module.yaml
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
on:
push:
paths:
- 'infrastructure/uxas/**'
pull_request:
paths:
- 'infrastructure/uxas/**'
workflow_dispatch:
schedule:
- cron: '10 3 * * 4'
name: Check uxas Build-Automation Module
jobs:
test:
strategy:
fail-fast: false
matrix:
env: [
{os: ubuntu-20.04, python: '3.8'},
{os: ubuntu-22.04, python: '3.10'}
]
runs-on: ${{ matrix.env.os }}
steps:
- uses: actions/checkout@v2
with:
path: OpenUxAS
- name: Set up python ${{ matrix.env.python }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.env.python }}
- name: Set up testing tools
run: |
pip install --upgrade pip
pip install tox
python3 -m pip install types-PyYAML
- name: Run testsuite and style checks
run: |
cd OpenUxAS/infrastructure/uxas
tox