chore: adding more tests to ActivationsStore + light refactoring #35
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 | |
on: | |
push: | |
branches: | |
- main | |
- clean_up_repo | |
paths-ignore: | |
- '.devcontainer/**' | |
- '.github/**' | |
- '.vscode/**' | |
- '.gitignore' | |
- '*.md' | |
pull_request: | |
branches: | |
- main | |
paths-ignore: | |
- '.devcontainer/**' | |
- '.github/**' | |
- '.vscode/**' | |
- '.gitignore' | |
- '*.md' | |
# Allow this workflow to be called from other workflows | |
workflow_call: | |
inputs: | |
# Requires at least one input to be valid, but in practice we don't need any | |
dummy: | |
type: string | |
required: false | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.10", "3.11"] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install Poetry | |
uses: snok/install-poetry@v1 | |
- name: Install dependencies | |
run: poetry install --no-interaction | |
- name: Lint with flake8 | |
run: poetry run flake8 . | |
- name: black code formatting | |
run: poetry run black . --check | |
- name: isort linting | |
run: poetry run isort . --check-only --diff | |
- name: type checking | |
run: poetry run pyright | |
- name: Run Unit Tests | |
run: make unit-test |