-
Notifications
You must be signed in to change notification settings - Fork 86
49 lines (46 loc) · 1.22 KB
/
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
41
42
43
44
45
46
47
48
49
name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install Dependencies
run: |
pip3 install --upgrade pip && \
pip3 install pdm && \
pdm sync
- name: Lint with black and isort
run: |
pdm run black . --check
pdm run isort . --check
docs:
runs-on: ubuntu-latest
# Only run this job if the lint job is successful and the current branch is main
needs: lint
if: ${{ github.ref == 'refs/heads/main' }}
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install dependencies
run: |
pip3 install --upgrade pip && \
pip3 install pdm && \
pdm sync
- name: Build docs
run: pdm run sphinx-build docs docs/_build
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: docs/_build