Skip to content

add todo for hack removal #358

add todo for hack removal

add todo for hack removal #358

Workflow file for this run

name: Static Analysis
on:
merge_group:
branches:
- main
push:
branches:
- main
pull_request:
branches:
- main
jobs:
static-analysis:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [
ubuntu-latest,
]
toolchain: [
stable,
1.71.1
]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Go Toolchain
uses: actions/setup-go@v3
with:
go-version: '=1.20.0'
- name: Rust Toolchain
run: |
rustup toolchain install ${{ matrix.toolchain }} --profile minimal --no-self-update
rustup default ${{ matrix.toolchain }}
- name: Rust Cache
uses: Swatinem/rust-cache@v2
- name: Make Static
run: make static