summaryrefslogtreecommitdiff
path: root/.github/workflows/lint.yml
diff options
context:
space:
mode:
authorpml68 <contact@pml68.dev>2025-06-16 01:07:04 +0200
committerpml68 <contact@pml68.dev>2025-06-16 01:07:04 +0200
commit7398f64d515ceec4789deacde2e2ecff5175d8bc (patch)
treed48c0b636c29b3c628d492fb88743519edfddd97 /.github/workflows/lint.yml
parentci: test build on MSRV, build with `release` profile (diff)
downloadiced-builder-7398f64d515ceec4789deacde2e2ecff5175d8bc.tar.gz
ci: separate `Lint` and `Test` workflows
Diffstat (limited to '')
-rw-r--r--.github/workflows/lint.yml (renamed from .github/workflows/ci.yml)6
1 files changed, 2 insertions, 4 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/lint.yml
index e2316f3..073b5e9 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/lint.yml
@@ -1,7 +1,7 @@
-name: CI
+name: Lint
on: [push, pull_request]
jobs:
- ci:
+ all:
runs-on: ubuntu-latest
steps:
- uses: hecrj/setup-rust-action@v2
@@ -24,5 +24,3 @@ jobs:
key: ${{ runner.os }}-ci-${{ hashFiles('**/Cargo.lock') }}
- name: Check lints
run: cargo lint
- - name: Run tests
- run: cargo test --verbose --profile ci