-
Notifications
You must be signed in to change notification settings - Fork 18
36 lines (32 loc) · 900 Bytes
/
main.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
---
name: stratis-docs CI
# yamllint disable-line rule:truthy
on:
push:
branches: [master]
pull_request:
branches: [master]
workflow_dispatch:
jobs:
docs-checks:
runs-on: ubuntu-latest
container: fedora:39 # CURRENT DEVELOPMENT ENVIRONMENT
steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: dnf install -y make lyx 'dnf-command(copr)'
- name: Enable copr repo
run: dnf copr enable atim/zola --assumeyes
- name: Install zola
run: dnf install zola --assumeyes
- name: Run test
run: make -f Makefile check
ci-checks:
runs-on: ubuntu-latest
container: fedora:39 # CURRENT DEVELOPMENT ENVIRONMENT
steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: dnf install -y make yamllint
- name: Run test
run: make -f Makefile yamllint