Build from refs/pull/141/merge #19
Workflow file for this run
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
name: Build package | |
on: | |
pull_request: | |
branches: [main, develop] | |
workflow_dispatch: | |
permissions: | |
contents: write | |
actions: write | |
pull-requests: write | |
run-name: Build from ${{ github.ref }} | |
jobs: | |
formatting-tests: | |
name: Consistency and formatting | |
runs-on: [ubuntu-latest] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python 3.9 | |
uses: actions/setup-python@v3 | |
with: | |
python-version: "3.9" | |
- name: Install Poetry | |
uses: snok/install-poetry@v1 | |
- name: Formatting tests | |
run: | | |
poetry install --with dev | |
poetry run black --check . | |
poetry run isort --check . | |
poetry run autoflake --check . | |
unit-tests: | |
name: Unit Tests | |
runs-on: [ubuntu-latest] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python 3.9 | |
uses: actions/setup-python@v3 | |
with: | |
python-version: "3.9" | |
- name: Install Poetry | |
uses: snok/install-poetry@v1 | |
- name: Unit tests | |
run: | | |
poetry install | |
poetry run pytest -v src/tests/ |