summaryrefslogtreecommitdiff
path: root/.github/workflows/lint.yml
diff options
context:
space:
mode:
authorPolesznyák Márk László <116908301+pml68@users.noreply.github.com>2025-03-23 02:49:57 +0100
committerGitHub <noreply@github.com>2025-03-23 02:49:57 +0100
commit3076889c00116b22f022792471253e7188c6e93e (patch)
treebff0cda7a9152e9f94d3176bbf5acaf879394f5f /.github/workflows/lint.yml
parentfeat: update to Rust 2024 (diff)
parentfeat: finish `ApplyOptions` impls (diff)
downloadiced-builder-3076889c00116b22f022792471253e7188c6e93e.tar.gz
Merge pull request #7 from pml68/feat/options-backend
Options backend done (for now)
Diffstat (limited to '.github/workflows/lint.yml')
-rw-r--r--.github/workflows/lint.yml17
1 files changed, 0 insertions, 17 deletions
diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml
deleted file mode 100644
index 4647a07..0000000
--- a/.github/workflows/lint.yml
+++ /dev/null
@@ -1,17 +0,0 @@
-name: Lint
-on: [push, pull_request]
-jobs:
- lint:
- 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 libgtk-3-dev
- - name: Check lints
- run: cargo lint