Skip to content

improve same_transfer_twice_* tests #11

improve same_transfer_twice_* tests

improve same_transfer_twice_* tests #11

Workflow file for this run

name: Build
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
toolchain: [ nightly, stable, 1.77.0 ]
name: [ linux, windows, macos ]
include:
- name: linux
os: ubuntu-latest
- name: windows
os: windows-latest
- name: macos
os: macos-latest
steps:
- uses: ilammy/setup-nasm@v1
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: true
- name: Setup Rust toolchain
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: ${{ matrix.toolchain }}
- name: Build all targets
run: cargo build --all-targets