summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorpml68 <contact@pml68.dev>2025-02-27 23:35:27 +0100
committerpml68 <contact@pml68.dev>2025-02-27 23:35:27 +0100
commite89974f54f4435543b204dff675c53221418ad76 (patch)
treec2aab3bebc2ff65c40337e0f3514d8081fc7397e /.github/workflows
parentfeat: update `iced` (diff)
downloadiced-builder-e89974f54f4435543b204dff675c53221418ad76.tar.gz
ci: add step for running tests
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/ci.yml (renamed from .github/workflows/lint.yml)6
1 files changed, 4 insertions, 2 deletions
diff --git a/.github/workflows/lint.yml b/.github/workflows/ci.yml
index 4647a07..eba27cf 100644
--- a/.github/workflows/lint.yml
+++ b/.github/workflows/ci.yml
@@ -1,7 +1,7 @@
-name: Lint
+name: CI
on: [push, pull_request]
jobs:
- lint:
+ ci:
runs-on: ubuntu-latest
steps:
- uses: hecrj/setup-rust-action@v2
@@ -15,3 +15,5 @@ jobs:
sudo apt-get install -y libxkbcommon-dev libgtk-3-dev
- name: Check lints
run: cargo lint
+ - name: Run tests
+ run: cargo test --verbose