-
Notifications
You must be signed in to change notification settings - Fork 5
40 lines (32 loc) · 820 Bytes
/
ci.yml
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
35
36
37
38
39
40
name: ci
on:
workflow_dispatch:
pull_request:
push:
branches: [ master, stage ]
jobs:
pre_commit:
runs-on: ubuntu-latest
timeout-minutes: 4
strategy:
matrix:
python-version: [3.8, 3.9, 3.10.9, 3.11.1]
steps:
- name: checkout code
uses: actions/checkout@v3
- name: setup python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: run pre-commit action
uses: pre-commit/action@v3.0.0
with:
extra_args: --all-files
# - name: run tests
# run: |
# python -m pytest tests/ -v