Bump attrs from 23.1.0 to 23.2.0 #107
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: pytest | |
on: | |
push: | |
branches: ['*'] | |
pull_request: | |
branches: [main] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.11" | |
cache: "pip" | |
- name: install requirements | |
run: pip install -r requirements.txt | |
- name: run tests | |
env: | |
AOC_SESSION: ${{ secrets.AOC_SESSION }} | |
run: pytest --cov=./ --cov-report=xml --mypy --pylint --pylint-ignore-patterns '.*year201[89].*' | |
- name: upload code coverage | |
uses: codecov/codecov-action@v3 | |
with: | |
files: coverage.xml | |
verbose: true |