build(deps): bump contracts/lib/tnt-core from b51a732
to 07f3925
#21
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: ci | |
on: | |
workflow_dispatch: | |
pull_request: | |
push: | |
branches: [ 'main' ] | |
paths-ignore: | |
- "**.md" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout code | |
uses: actions/checkout@v4 | |
- name: Install Foundry | |
uses: foundry-rs/foundry-toolchain@v1 | |
- name: Verify Forge installation | |
run: forge --version | |
- name: Install rust | |
uses: dtolnay/rust-toolchain@nightly | |
with: | |
toolchain: stable | |
- uses: swatinem/rust-cache@v2 | |
with: | |
cache-on-failure: "true" | |
- run: | | |
cargo build |