fwd compat from 0.4.4 integration test #139
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: Static Analysis | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
static-analysis: | |
name: Static Analysis | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ | |
ubuntu-latest, | |
] | |
toolchain: [ | |
stable, | |
"1.77.2", # Check the version used by Holochain | |
] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: ${{ matrix.toolchain }} | |
components: rustfmt, clippy | |
- name: Cargo Install Readme | |
uses: actions-rs/cargo@v1 | |
with: | |
command: install | |
args: cargo-readme | |
- name: Make Static | |
run: make static |