diff --git a/.github/workflows/tests_and_lints.yml b/.github/workflows/tests_and_lints.yml index 76f1bc9..31da8c9 100644 --- a/.github/workflows/tests_and_lints.yml +++ b/.github/workflows/tests_and_lints.yml @@ -1,13 +1,20 @@ name: Lint and test -on: [push] +on: + - push + - pull_request + jobs: build: runs-on: ubuntu-latest strategy: matrix: - python-versions: ["3.10", "3.11", "3.12"] + python-versions: + - "3.10" + - "3.11" + - "3.12" + - "3.13" steps: - uses: actions/checkout@v3