add links to the new page #68
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: lint | |
on: | |
push: | |
branches: | |
- dev | |
workflow_dispatch: | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
- name: create docker volume (if needed) | |
run: docker volume create rst-test-spec-persistent | |
- name: build | |
run: docker compose run spec | |
- name: lint | |
run: docker compose run lint |