Blog post for metadata rework #398
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
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:40 # CURRENT DEVELOPMENT ENVIRONMENT | |
steps: | |
- uses: actions/checkout@v4 | |
- 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:40 # CURRENT DEVELOPMENT ENVIRONMENT | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: dnf install -y make yamllint | |
- name: Run test | |
run: make -f Makefile yamllint |