-
-
Notifications
You must be signed in to change notification settings - Fork 7.2k
37 lines (27 loc) · 682 Bytes
/
Linux_CI.yml
File metadata and controls
37 lines (27 loc) · 682 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
name: Linux_CI
on:
push:
branches:
- master
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '3.13' ]
name: Python ${{ matrix.python-version }} CI
steps:
- uses: actions/checkout@v6
- run: git fetch --prune --unshallow
- name: Setup python
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python --version
python -m pip install --upgrade pip
python -m pip install -r requirements/requirements.txt
- name: do all unit tests
run: bash runtests.sh