diff options
| author | pml68 <contact@pml68.dev> | 2025-06-16 01:07:04 +0200 |
|---|---|---|
| committer | pml68 <contact@pml68.dev> | 2025-06-16 01:07:04 +0200 |
| commit | 7398f64d515ceec4789deacde2e2ecff5175d8bc (patch) | |
| tree | d48c0b636c29b3c628d492fb88743519edfddd97 /.github/workflows/ci.yml | |
| parent | ci: test build on MSRV, build with `release` profile (diff) | |
| download | iced-builder-7398f64d515ceec4789deacde2e2ecff5175d8bc.tar.gz | |
ci: separate `Lint` and `Test` workflows
Diffstat (limited to '.github/workflows/ci.yml')
| -rw-r--r-- | .github/workflows/ci.yml | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml deleted file mode 100644 index e2316f3..0000000 --- a/.github/workflows/ci.yml +++ /dev/null @@ -1,28 +0,0 @@ -name: CI -on: [push, pull_request] -jobs: - ci: - runs-on: ubuntu-latest - steps: - - uses: hecrj/setup-rust-action@v2 - with: - components: clippy - - uses: actions/checkout@master - - name: Install dependencies - run: | - export DEBIAN_FRONTED=noninteractive - sudo apt-get -qq update - sudo apt-get install -y libxkbcommon-dev clang mold - - uses: actions/cache@v4 - with: - path: | - ~/.cargo/bin/ - ~/.cargo/registry/index/ - ~/.cargo/registry/cache/ - ~/.cargo/git/db/ - target/ - key: ${{ runner.os }}-ci-${{ hashFiles('**/Cargo.lock') }} - - name: Check lints - run: cargo lint - - name: Run tests - run: cargo test --verbose --profile ci |
