Skip to content

Merge pull request #97 from h2020charisma/fix-tests #201

Merge pull request #97 from h2020charisma/fix-tests

Merge pull request #97 from h2020charisma/fix-tests #201

Workflow file for this run

name: build
on:
pull_request:
branches: [ master, main ]
push:
branches: [ master, main ]
workflow_dispatch:
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest]
python-version: ["3.9"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install tox-gh-actions
- name: Run tox
run: tox