Adds error page template (and 404 fallback) #128
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: Windows | |
on: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
build_test: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: setup rust stable | |
run: curl https://sh.rustup.rs -sSf | sh -s -- -y | |
- name: unit tests | |
run: | | |
cargo test --all --release | |
- name: upload bundle | |
uses: actions/upload-artifact@v4 | |
with: | |
name: windows | |
path: target/release/busser |