generated from JadeCara/python_setup
-
Notifications
You must be signed in to change notification settings - Fork 0
51 lines (42 loc) · 948 Bytes
/
ci.yml
File metadata and controls
51 lines (42 loc) · 948 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
services:
docker:
image: docker:19.03.12
options: --privileged
ports:
- 8000:8000
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m venv venv
source venv/bin/activate
pip install -r requirements.txt
pip install black flake8 pytest
- name: Lint with flake8
run: |
source venv/bin/activate
flake8 .
- name: Format with black
run: |
source venv/bin/activate
black --check .
- name: Run tests
run: |
source venv/bin/activate
pytest