Skip to content

ci: fix typo in publish action #6

ci: fix typo in publish action

ci: fix typo in publish action #6

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '3.10', '3.11' ]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
name: Set up Python
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: python -m pip install poetry && python -m poetry install
- name: Test
run: ./run_tests.bash
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3