Skip to content

Commit

Permalink
ci: workflow to show the tracker contract in markdown
Browse files Browse the repository at this point in the history
  • Loading branch information
josecelano committed Sep 25, 2023
1 parent 64c932b commit 8d753d4
Showing 1 changed file with 54 additions and 0 deletions.
54 changes: 54 additions & 0 deletions .github/workflows/contract.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
name: Contract

on:
push:
pull_request:

env:
CARGO_TERM_COLOR: always

jobs:
unit:
name: Units
runs-on: ubuntu-latest

strategy:
matrix:
toolchain: [stable]

steps:
- id: checkout
name: Checkout Repository
uses: actions/checkout@v4

- id: setup
name: Setup Toolchain
uses: dtolnay/rust-toolchain@stable
with:
toolchain: ${{ matrix.toolchain }}
components: llvm-tools-preview

- id: cache
name: Enable Job Cache
uses: Swatinem/rust-cache@v2

- id: tools
name: Install Tools
uses: taiki-e/install-action@v2
with:
tool: cargo-llvm-cov, cargo-nextest

- id: pretty-test
name: Install pretty-test
run: cargo install cargo-pretty-test

- id: contract
name: Run contract
run: |
echo "### Tracker Living Contract! :rocket: >> $GITHUB_STEP_SUMMARY
echo "" >> $GITHUB_STEP_SUMMARY
echo "```console" >> $GITHUB_STEP_SUMMARY
cargo pretty-test --lib --bins >> $GITHUB_STEP_SUMMARY
echo "```" >> $GITHUB_STEP_SUMMARY

0 comments on commit 8d753d4

Please sign in to comment.