Validation: check that all actual witness ids match the expected value #808
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: Build Check | |
on: | |
push: | |
branches: | |
- master | |
- develop | |
- 'v[0-9]+.[0-9]+' | |
pull_request: | |
branches: | |
- master | |
- develop | |
- 'v[0-9]+.[0-9]+' | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
default: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
# NOTE: Dont use nix here everything should be based on the ubuntu-latest | |
- name: Install rust stable | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
override: true | |
- name: Latest Ubuntu build check | |
uses: actions-rs/cargo@v1 | |
with: | |
command: check | |
args: --workspace | |
features: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
feature: | |
- stl | |
- serde | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Nix | |
uses: cachix/install-nix-action@V27 | |
- name: Check feature ${{ matrix.feature }} only | |
run: nix develop .#stable -c cargo check --no-default-features --features=${{ matrix.feature }} | |
- name: Check feature ${{ matrix.feature }} with defaults | |
run: nix develop .#stable -c cargo check --features=${{ matrix.feature }} | |
platforms: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ ubuntu-20.04, ubuntu-22.04, macos-12, macos-13, windows-2019, windows-2022 ] | |
steps: | |
- uses: actions/checkout@v4 | |
# NOTE: Dont use nix in platform checks everything should based on the host system | |
- name: Install rust stable | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
override: true | |
- name: Build check with all features | |
uses: actions-rs/cargo@v1 | |
with: | |
command: check | |
args: --workspace --all-targets --all-features | |
toolchains: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
toolchain: [ nightly, beta, stable, msrv ] | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
- name: Install Nix | |
uses: cachix/install-nix-action@V27 | |
- name: Check rgb-core | |
run: nix develop ".#${{ matrix.toolchain }}" -c cargo check --workspace --all-targets --all-features |