Skip to content

Update: dependencies #46

Update: dependencies

Update: dependencies #46

Workflow file for this run

name: lint&test
on:
- push
- pull_request
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.11.3]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install poetry
make install
- name: Run linter
run: |
make lint
- name: Run tests
run: |
pip install poetry
make install
make test
- uses: paambaati/[email protected]
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
with:
coverageCommand: make test
debug: true