From e7ad9849dec80b81b095cf141b66f65567b1384c Mon Sep 17 00:00:00 2001 From: Ping Date: Wed, 9 Sep 2026 16:09:15 +0200 Subject: [PATCH] ci: linux toolchain check --- .gitea/workflows/smoke.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .gitea/workflows/smoke.yml diff --git a/.gitea/workflows/smoke.yml b/.gitea/workflows/smoke.yml new file mode 100644 index 0000000..dfb4e18 --- /dev/null +++ b/.gitea/workflows/smoke.yml @@ -0,0 +1,14 @@ +name: linux-toolchain-check +on: [push] + +jobs: + linux: + runs-on: linux-x64 + steps: + - name: Rust toolchain + shell: bash + run: | + cargo --version + rustc --version + cc --version | head -1 + echo TOOLCHAIN_OK