Skip to content

Workflow file for this run

on: [push]
jobs:
lint:
uses: ./.github/workflows/call-rust-lint.yml
with:
clippy: true
workdir: "tests/rust"
build:
needs: lint
uses: ./.github/workflows/call-rust-build.yml
with:
workdir: "tests/rust"
containeraized:
needs: build
permissions:
contents: read
packages: write
uses: ./.github/workflows/call-containerize.yml
secrets: inherit
with:
version: ${{ needs.build.outputs.version }}