webapp/alerts: safer handling of values that could be null #709
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: Builds | |
on: | |
push: | |
paths-ignore: | |
- "CHANGELOG.md" | |
- "README.md" | |
pull_request: | |
paths-ignore: | |
- "CHANGELOG.md" | |
- "README.md" | |
jobs: | |
cargo-test: | |
name: Cargo Test | |
runs-on: ubuntu-latest | |
container: rust:latest | |
steps: | |
- uses: actions/checkout@v4 | |
# Needed to we can get the build revision, required by build.rs | |
- run: git config --global --add safe.directory /__w/evebox/evebox | |
- run: cargo test --all | |
build-dist: | |
name: Build Distributions | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: bash -x ./build-dist.sh |