From 933e3b4b238045db83681aac4274de443761c2b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tristan=20Dani=C3=ABl=20Maat?= Date: Mon, 10 Feb 2025 12:11:31 +0800 Subject: [PATCH] WIP: ci: Replace rust workflow with the rust-workflow The original rust workflow has been superseded by the latter, and will be removed soon. --- .github/workflows/build.yml | 23 ++++++++++++++++++----- 1 file changed, 18 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7d0041d..0e88371 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,11 +1,24 @@ ---- +name: Rust workflow + on: push: - branches: [main] - tags: ['*'] + branches: [ "main" ] + tags: [ "*" ] pull_request: + branches: [ "*" ] + +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true jobs: - build: - uses: famedly/github-workflows/.github/workflows/rust.yml@main + check: + permissions: + issues: write + pull-requests: write + contents: read + uses: famedly/backend-build-workflows/.github/workflows/rust-workflow.yml@tlater/breaking-changes secrets: inherit + with: + ref: tlater/breaking-changes + run-doctests: false