forked from spyder-ide/lektor-icon
-
Notifications
You must be signed in to change notification settings - Fork 0
49 lines (41 loc) · 1.2 KB
/
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
47
48
49
# Build the project and test that it works correctly
# Based on https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Test Site
on: [pull_request] # yamllint disable-line rule:truthy
jobs:
deploy:
name: Build Site
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
submodules: true
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install Dependencies
uses: ./.github/actions/setup-and-install
- name: Build Site
uses: ./.github/actions/build-project
pre-commit:
name: Run Pre-Commit
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
submodules: true
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install Dependencies
uses: ./.github/actions/setup-and-install
- name: Run Main Pre-Commit Hooks
uses: pre-commit/action@v2.0.0
- name: Run Manual Pre-Commit Checks
uses: pre-commit/action@v2.0.0
with:
extra_args: --all-files --hook-stage manual