-
-
Notifications
You must be signed in to change notification settings - Fork 109
32 lines (31 loc) · 800 Bytes
/
Copy pathci.yaml
File metadata and controls
32 lines (31 loc) · 800 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
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-22.04
env:
NIKOLA_DEPLOY: python.ec
steps:
- uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install requirements
run: |
python -m pip install --upgrade pip
python -m pip install nox
- name: Tests
run: python -m nox -s tests
- name: Lint
run: python -m nox -s lint_rst lint_yaml lint_python
- name: Deploy
if: ${{ github.ref == 'refs/heads/main' }}
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./output