feat: Add estimate
subcommand
#5
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: Integration Tests | ||
on: | ||
pull_request: | ||
branches: | ||
- '**' | ||
concurrency: | ||
group: "integration-tests" | ||
cancel-in-progress: true | ||
permissions: read-all | ||
jobs: | ||
integration-tests: | ||
name: Setup Toolchain and Test | ||
runs-on: ubuntu-latest-m | ||
permissions: | ||
contents: "read" | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
- name: Install Nix With Bonsol Binary Cache | ||
uses: DeterminateSystems/nix-installer-action@main | ||
with: | ||
extra-conf: | | ||
extra-substituters = https://bonsol.cachix.org | ||
extra-trusted-public-keys = bonsol.cachix.org-1:yz7vi1rCPW1BpqoszdJvf08HZxQ/5gPTPxft4NnT74A= | ||
- name: Run Integration Tests | ||
run: nix develop | ||
run: cargo --list | ||
Check failure on line 32 in .github/workflows/integration-tests.yml GitHub Actions / Integration TestsInvalid workflow file
|
||
run: cargo build && cargo test --features integration -- --nocapture |