Skip to content

Merge pull request #500 from Corfucinas/dependabot/github_actions/rel… #1419

Merge pull request #500 from Corfucinas/dependabot/github_actions/rel…

Merge pull request #500 from Corfucinas/dependabot/github_actions/rel… #1419

Workflow file for this run

name: Codecov
on: push
jobs:
coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install Poetry
uses: snok/[email protected]
with:
virtualenvs-create: true
virtualenvs-in-project: true
- name: Install dependencies
run: poetry install --no-interaction --no-root -vvv
- name: Run nox
- run: nox --sessions coverage
env:
CODECOV_TOKEN: ${{secrets.CODECOV_TOKEN}}