[Bug-Fix][Data Deserialization] #2
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: 'Status Report' | |
on: | |
push: | |
paths: | |
- 'src/**.rs' | |
- '.github/workflows/alpine.yml' | |
pull_request: | |
paths: | |
- 'src/**.rs' | |
- '.github/workflows/alpine.yml' | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
status_report: | |
name: "Status Report" | |
runs-on: ubuntu-latest | |
container: rust:alpine | |
steps: | |
- uses: actions/checkout@v4 | |
- name: 'setup toolchain' | |
run: apk --no-cache add rustup clang compiler-rt mold musl-dev | |
- name: 'build status' | |
run: cargo build --verbose --release |