-
Notifications
You must be signed in to change notification settings - Fork 0
46 lines (39 loc) · 1 KB
/
lint_test.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
41
42
43
44
45
46
name: Lint and Test
on:
workflow_call:
workflow_dispatch:
pull_request:
branches:
- "main"
jobs:
cancel-previous-run:
runs-on: ubuntu-latest
steps:
- name: Cancel Previous Runs
uses: styfle/[email protected]
with:
access_token: ${{ github.token }}
lint-all:
runs-on: ubuntu-20.04
steps:
- name: Check out Git repository
uses: actions/checkout@v2
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Run linter
uses: pre-commit/[email protected]
with:
extra_args: --all-files
backend-test:
runs-on: ubuntu-20.04
steps:
- name: Check out Git repository
uses: actions/checkout@v2
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Install dependencies
working-directory: backend
run: pip install -r requirements.txt
- name: Run pytest
working-directory: backend
run: pytest -vv