wsgi tests: no need to mock ref housenumbers files anymore #5759
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: tests | |
on: | |
push: | |
branches-ignore: | |
- 'private/**' | |
pull_request: | |
branches-ignore: | |
- 'private/**' | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/[email protected] | |
- name: Setup Rust | |
uses: dtolnay/rust-toolchain@v1 | |
with: | |
toolchain: 1.79.0 | |
components: rustfmt, clippy, llvm-tools-preview | |
- name: Rust Cache | |
uses: actions/[email protected] | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
key: ${{ runner.os }}-cargo-1.79.0-${{ hashFiles('**/Cargo.toml') }} | |
- name: Setup Node | |
uses: actions/[email protected] | |
with: | |
node-version: 18 | |
- name: Run make check | |
run: | | |
tools/ci-build.sh |