Create #42
Workflow file for this run
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 | |
# 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 | |
# Environment variables for all jobs. | |
env: | |
CARGO_TERM_COLOR: always | |
# Defined CI jobs. | |
jobs: | |
check: | |
uses: famedly/backend-build-workflows/.github/workflows/rust-workflow.yml@main | |
secrets: inherit |