Skip to content

Update issue templates #43

Update issue templates

Update issue templates #43

Workflow file for this run

name: Check
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Get checker commit hash
run: |
git log --no-decorate --pretty=format:"CHECKER_COMMIT=%h" -1 check >> $GITHUB_ENV
- name: Cache
id: cache
uses: actions/cache@v3
with:
path: check/target/release/check
key: check-build-cache-${{ env.CHECKER_COMMIT }}
- name: Build
if: steps.cache.outputs.cache-hit != 'true'
run: |
cd check
cargo build --release
- name: Check
run: check/target/release/check