Check Infrastructure Install #232
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: | |
env: [ | |
{os: ubuntu-22.04, python: '3.10'}, | |
{os: ubuntu-24.04, python: '3.12'} | |
] | |
runs-on: ${{ matrix.env.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
path: OpenUxAS | |
- name: Set up python ${{ matrix.env.python }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.env.python }} | |
- 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 |