Files
OpenUxAS/.github/workflows/infrastructure-install.yaml
2021-05-27 10:17:00 -04:00

40 lines
1.0 KiB
YAML

on:
push:
paths:
- 'infrastructure/install-libexec/**'
pull_request:
paths:
- 'infrastructure/install-libexec/**'
workflow_dispatch:
schedule:
- cron : '40 3 * * 4'
name: Check Infrastructure Install
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-18.04, ubuntu-20.04]
python-version: [3.7, 3.8]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
with:
path: OpenUxAS
- name: Set up python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Set up testing tools
run: |
pip install --upgrade pip
pip install tox
- name: Run testsuite and style checks
run: |
cd OpenUxAS/infrastructure/install-libexec
tox