Remove global warning, add localized WIP notices #1194
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: Rust | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| branches: [ master ] | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Check formatting | |
| run: cargo fmt -- --check | |
| - name: Lint | |
| run: cargo clippy -- -D warnings | |
| - name: Run tests | |
| run: cargo test --verbose | |
| # cargo test regenerates bindings/ (ts-rs), so a diff here means the | |
| # committed TypeScript bindings are stale — commit the regenerated files | |
| - name: Check TypeScript bindings are up to date | |
| run: git diff --exit-code bindings/ | |
| - name: Build | |
| run: cargo build --release --verbose | |
| - name: Create preview release | |
| uses: softprops/action-gh-release@v2 | |
| with: | |
| token: "${{ secrets.GITHUB_TOKEN }}" | |
| tag_name: 'preview' | |
| prerelease: true | |
| name: 'preview' | |
| files: 'target/release/btcmap-api' |