Skip to content

Merge pull request #67 from anoma/tiago/pubkey-repr #87

Merge pull request #67 from anoma/tiago/pubkey-repr

Merge pull request #67 from anoma/tiago/pubkey-repr #87

Workflow file for this run

name: Rust
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
fmt-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Check code formatting
run: make fmt-check
clippy-no-std:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Clippy (no_std)
run: make clippy-no-std
- name: Clippy (no_std + all features)
run: make clippy-no-std-all-features
clippy-all-targets:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Clippy (all targets)
run: make clippy-all
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run tests
run: make test
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Generate docs
run: make docs