-
Notifications
You must be signed in to change notification settings - Fork 10
42 lines (40 loc) · 1.06 KB
/
ci.yaml
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
41
42
name: "CI"
on:
push:
branches: ["main"]
pull_request:
types:
- opened
- synchronize
- reopened
- ready_for_review
concurrency:
group: ci-check-${{ github.ref }}
cancel-in-progress: true
jobs:
check:
runs-on: ubuntu-latest
if: github.event.pull_request.draft != true
strategy:
matrix:
"python-version": ["3.7", "3.11"]
steps:
- uses: actions/checkout@v3
with:
submodules: true
- name: "Install Poetry"
run: "pip install poetry"
- name: "Setup Python"
uses: actions/setup-python@v4
with:
python-version: "${{ matrix.python-version }}"
cache: "poetry"
- name: "Install poetry dependencies"
run: "poetry install --no-interaction"
- run: "pip install pre-commit"
- uses: actions/cache@v3
with:
path: ~/.cache/pre-commit
key: pre-commit-3|${{ env.pythonLocation }}|${{ hashFiles('.pre-commit-config.yaml') }}
- name: "Run pre-commit"
run: pre-commit run --show-diff-on-failure --color=always --hook-stage push