Rewrite it in Rust #53
Workflow file for this run
This file contains hidden or 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: Build site | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install pre-reqs | |
| run: | | |
| sudo apt-get install -y exiftool imagemagick | |
| - name: Build site | |
| run: ./build.ps1 | |
| - name: Validate HTML | |
| run: | | |
| wget https://github.com/validator/validator/releases/download/20.6.30/vnu.linux.zip -O vnu.linux.zip | |
| unzip vnu.linux.zip | |
| vnu-runtime-image/bin/vnu --skip-non-html public |