Skip to content

Commit

Permalink
copy main config
Browse files Browse the repository at this point in the history
  • Loading branch information
klinga committed Feb 5, 2024
1 parent 8ab07f4 commit 7b3cf19
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions .github/workflows/unit-tests.yaml
Original file line number Diff line number Diff line change
@@ -1,19 +1,23 @@
name: build
on:
push:
branches: main
branches:
- main
- "releases/**"
pull_request:
branches: main
branches:
- main
- "releases/**"
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
- name: Set up Python ${{ matrix.python-version}}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version}}
- name: Install dependencies
Expand Down

0 comments on commit 7b3cf19

Please sign in to comment.