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 8, 2024
1 parent 964a19d commit 288765c
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/actions_version_check.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Run unittests

on:
push:
pull_request:

jobs:
python34:
runs-on: ubuntu-latest # Replace with desired runner
container:
image: python:3.4-alpine3.8
steps:
- name: Python version
run: echo $(python3 -V)
- name: pwd
run: echo $(pwd)
- name: ls
run: echo $(ls)
- name: go to outliner
run: python3 -m unittest tests/

0 comments on commit 288765c

Please sign in to comment.