-
-
Notifications
You must be signed in to change notification settings - Fork 0
34 lines (32 loc) · 733 Bytes
/
linux_tests.yml
File metadata and controls
34 lines (32 loc) · 733 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
name: Linux tests
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
linux:
name: Linux Py${{ matrix.PYTHON_VERSION }}
runs-on: ubuntu-latest
env:
CI: True
PYTHON_VERSION: ${{ matrix.PYTHON_VERSION }}
RUNNER_OS: 'ubuntu'
strategy:
fail-fast: false
matrix:
PYTHON_VERSION: ['3.7', '3.8', '3.9', '3.10']
steps:
- name: Checkout branch
uses: actions/checkout@v2
- name: Install test dependencies
shell: bash -l {0}
run: |
python3 -m pip install -r requirements.txt
- name: Run tests
shell: bash -l {0}
run: |
cd pyfasttrack/
python3 -m pytest test