Make cargo test --doc
happy
#860
This file contains hidden or 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: Lint | |
on: | |
push: | |
branches: [ main, develop ] | |
pull_request: | |
jobs: | |
lint: | |
timeout-minutes: 10 | |
name: Lint - ${{ matrix.os }} - Rust ${{ matrix.toolchain }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
ocaml_version: [4.14.2] | |
os: [ubuntu-24.04] | |
toolchain: [1.84] | |
steps: | |
- uses: actions/checkout@v5 | |
- name: Setup build dependencies | |
uses: ./.github/actions/setup-build-deps | |
with: | |
include-sqlite: true | |
- name: Use shared OCaml setting up steps | |
uses: ./.github/actions/setup-ocaml | |
with: | |
ocaml_version: ${{ matrix.ocaml_version }} | |
- name: Setup SQLite database for SQLx | |
run: | | |
sqlite3 /tmp/heartbeats.db < tools/heartbeats-processor/schema.sql | |
- name: Setup Rust | |
uses: ./.github/actions/setup-rust | |
with: | |
toolchain: ${{ matrix.toolchain }} | |
components: clippy, rustfmt | |
cache-prefix: lint-${{ matrix.toolchain }}-v0 | |
- name: Run make check | |
run: make check | |
env: | |
DATABASE_URL: "sqlite:///tmp/heartbeats.db" | |
- name: Run make lint | |
run: make lint | |
env: | |
DATABASE_URL: "sqlite:///tmp/heartbeats.db" | |
lint-tx-fuzzing: | |
timeout-minutes: 10 | |
name: Lint transaction Fuzzing - ${{ matrix.os }} - Rust ${{ matrix.toolchain }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-24.04] | |
# This should be in line with the verison in: | |
# - Makefile | |
# - ./github/workflows/docs.yaml | |
# - ./github/workflows/fmt.yaml | |
# - ./github/workflows/lint.yaml | |
toolchain: [nightly] | |
ocaml_version: [4.14.2] | |
steps: | |
- uses: actions/checkout@v5 | |
- name: Setup build dependencies | |
uses: ./.github/actions/setup-build-deps | |
- name: Use shared OCaml setting up steps | |
uses: ./.github/actions/setup-ocaml | |
with: | |
ocaml_version: ${{ matrix.ocaml_version }} | |
- name: Setup Rust | |
uses: ./.github/actions/setup-rust | |
with: | |
toolchain: ${{ matrix.toolchain }} | |
components: clippy, rustfmt | |
cache-prefix: lint-tx-fuzzing-${{ matrix.toolchain }}-v0 | |
- name: Run transaction Fuzzing check | |
run: make check-tx-fuzzing | |
shellcheck: | |
timeout-minutes: 1 | |
name: Shellcheck - ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-24.04] | |
steps: | |
- uses: actions/checkout@v5 | |
- name: Install shellcheck | |
run: | | |
sudo apt update || true | |
sudo apt install -y shellcheck || true | |
- name: Run shellcheck | |
run: make lint-bash | |
hadolint: | |
timeout-minutes: 1 | |
name: Hadolint - ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-24.04] | |
steps: | |
- uses: actions/checkout@v5 | |
- name: Install hadolint | |
run: | | |
wget -O /tmp/hadolint https://github.com/hadolint/hadolint/releases/latest/download/hadolint-Linux-x86_64 | |
chmod +x /tmp/hadolint | |
sudo mv /tmp/hadolint /usr/local/bin/hadolint | |
- name: Run hadolint | |
run: make lint-dockerfiles |