Skip to content

Commit

Permalink
added version check
Browse files Browse the repository at this point in the history
  • Loading branch information
LucasAndradeDias committed Mar 7, 2024
1 parent 964a19d commit 1dbcd26
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/actions_version_check.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Version check

on:
push:
pull_request:

jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.4","3.5", "3.6", 3.7, 3.8, 3.9, 3.10, 3.11, 3.12]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Run tests
run: |
python -m unittest discover tests

0 comments on commit 1dbcd26

Please sign in to comment.