Use backend-build-workflows workflow for rust jobs #514
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: Rust workflow | ||
# Trigger the CI on any tags, pushes to any branch and PRs to any branch. | ||
on: | ||
push: | ||
branches: [ "main" ] | ||
tags: [ "*" ] | ||
pull_request: | ||
branches: [ "*" ] | ||
# Make sure there is no pipeline running uselessly. | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
# Defined CI jobs. | ||
jobs: | ||
tests: | ||
uses: famedly/backend-build-workflows/.github/workflows/rust-workflow.yml@c09c1ba4fb90a3311af4cc0fb985ddfd79cd884c | ||
Check failure on line 19 in .github/workflows/rust-workflow.yml
|
||
secrets: inherit |