-
Notifications
You must be signed in to change notification settings - Fork 93
65 lines (61 loc) · 1.58 KB
/
lint-yaml.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
name: Lint YAML
on:
push:
branches:
- main
paths:
- "data/**"
- "settings.yml"
- ".yamllint"
- "poetry.lock"
- "pyproject.toml"
- ".github/workflows/lint-yaml.yml"
pull_request:
branches:
- main
paths:
- "data/**"
- "settings.yml"
- ".yamllint"
- "poetry.lock"
- "pyproject.toml"
- ".github/workflows/lint-yaml.yml"
jobs:
lint:
runs-on: ubuntu-latest
steps:
# Python & dependency installation
- uses: actions/checkout@v3
- name: Yaml file linting
run: |
docker run --rm \
-v $(pwd):/code \
registry.gitlab.com/pipeline-components/yamllint:latest \
-s .
- name: setup Python 3.9
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: install Poetry
uses: snok/[email protected]
- name: cache Poetry virtualenv
uses: actions/cache@v3
id: cache
with:
path: ~/.virtualenvs/
key: poetry-${{ hashFiles('**/poetry.lock') }}
restore-keys: |
poetry-${{ hashFiles('**/poetry.lock') }}
- name: set poetry config path
run: poetry config virtualenvs.path ~/.virtualenvs
- name: install dependencies
run: poetry install
# if: steps.cache.outputs.cache-hit != 'true'
- name: lint people
run: poetry run os-people lint
env:
OS_PEOPLE_DIRECTORY: ${{ env.GITHUB_WORKSPACE }}
- name: lint committees
run: poetry run os-committees lint
env:
OS_PEOPLE_DIRECTORY: ${{ env.GITHUB_WORKSPACE }}