Skip to content

fix up CHANGELOG and Cargo.toml version #110

fix up CHANGELOG and Cargo.toml version

fix up CHANGELOG and Cargo.toml version #110

Workflow file for this run

name: CI
on:
push:
branches: [main, staging, trying]
pull_request:
branches: [main]
env:
CARGO_TERM_COLOR: always
jobs:
all-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Run disassembler test suite
run: cargo test --bin cargo-call-stack
# one test at a time because rustup does not handle well concurrency
- name: Run firmware tests
run: cargo test --test firmware -- --test-threads 1
# Refs: https://github.com/rust-lang/crater/blob/9ab6f9697c901c4a44025cf0a39b73ad5b37d198/.github/workflows/bors.yml#L125-L149
# bors.tech integration
ci-success:
name: CI
if: ${{ success() }}
needs:
- all-tests
runs-on: ubuntu-20.04
steps:
- name: CI succeeded
run: exit 0