Skip to content

Remove global warning, add localized WIP notices #1194

Remove global warning, add localized WIP notices

Remove global warning, add localized WIP notices #1194

Workflow file for this run

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'