Skip to content

chore: bump black from 23.3.0 to 24.3.0 #71

chore: bump black from 23.3.0 to 24.3.0

chore: bump black from 23.3.0 to 24.3.0 #71

Workflow file for this run

name: "Build"
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.9
uses: actions/setup-python@v5
with:
python-version: "3.9"
- name: Install poetry
run: |
python -m pip install poetry
- name: Configure poetry
run: |
python -m poetry config virtualenvs.in-project true
- name: Cache the virtualenv
uses: actions/cache@v4
with:
path: ./.venv
key: ${{ runner.os }}-venv-${{ hashFiles('**/poetry.lock') }}
- name: Install dependencies
run: |
make install
- name: Lint project
run: |
make lint
- name: Run unit tests
run: |
make unit-test
- name: Upload coverage report
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: "./coverage.lcov"
- name: Run integration tests
run: |
make integration-test