chore(deps): bump contracts/lib/tnt-core from fad7030
to c1fa9c7
#20
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: Verify Template | |
on: | |
workflow_dispatch: | |
pull_request: | |
push: | |
branches: [ 'main' ] | |
paths-ignore: | |
- "**.md" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
PROJECT_NAME: blueprint-template | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: JohnPeel/cargo-generate-action@main | |
with: | |
name: ${{ env.PROJECT_NAME }} | |
arguments: > | |
--define gh-username="webb-tools" | |
--define project-description="An example blueprint" | |
--define project-homepage="https://webb.tools" | |
--define flakes=true | |
--define docker=true | |
--define base-image="rustlang/rust:nightly" | |
- uses: dtolnay/rust-toolchain@stable | |
with: | |
toolchain: stable | |
- run: | | |
cp -r $PROJECT_NAME ${{ runner.temp }}/ | |
cd ${{ runner.temp }}/$PROJECT_NAME | |
cargo check |