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 77b15ac
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/actions_version_check.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Run unittests

on:
push:
pull_request:

jobs:
python35:
runs-on: ubuntu-latest # Replace with desired runner
steps:
- uses: actions/checkout@v3
- uses: docker/run-action@v3
with:
name: python:3.5-slim
commands: |
python -m unittest discover tests
python36:
runs-on: ubuntu-latest # Replace with desired runner
steps:
- uses: actions/checkout@v3
- uses: docker/run-action@v3
with:
name: python:3.6-slim
commands: |
python -m unittest discover tests

0 comments on commit 77b15ac

Please sign in to comment.