Skip to content

Merge pull request #149 from ufal/fix-campaign-config-missing #35

Merge pull request #149 from ufal/fix-campaign-config-missing

Merge pull request #149 from ufal/fix-campaign-config-missing #35

Workflow file for this run

name: Pytest
on:
push:
branches: [ main, release-1.0.0]
pull_request:
branches: [ main, release-1.0.0]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.11
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .[test]
- name: Run tests
run: |
pytest