summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2024-04-07 14:01:05 +0200
committerLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2024-04-07 14:06:52 +0200
commit13289dbd1933e7d7a0b21cffd197813f8f6f7fc0 (patch)
tree85cbda9aa86c277e623943307c63a33e192ae609 /.github
parent5e01d767c5ef8a35937675d4e8f02b4c678a5da2 (diff)
parent1c241d1150d2f7b5d0ae154439325950e5d25f38 (diff)
downloadiced-13289dbd1933e7d7a0b21cffd197813f8f6f7fc0.tar.gz
iced-13289dbd1933e7d7a0b21cffd197813f8f6f7fc0.tar.bz2
iced-13289dbd1933e7d7a0b21cffd197813f8f6f7fc0.zip
Merge branch 'master' into wgpu/better-architecture
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/check.yml8
-rw-r--r--.github/workflows/lint.yml7
2 files changed, 6 insertions, 9 deletions
diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml
index 79fa7be6..ceac39e7 100644
--- a/.github/workflows/check.yml
+++ b/.github/workflows/check.yml
@@ -1,14 +1,6 @@
name: Check
on: [push, pull_request]
jobs:
- benchmarks:
- runs-on: ubuntu-latest
- steps:
- - uses: hecrj/setup-rust-action@v2
- - uses: actions/checkout@master
- - name: Check benchmarks
- run: cargo check --benches --all-features
-
wasm:
runs-on: ubuntu-latest
env:
diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml
index ccf79cb7..16ee8bf9 100644
--- a/.github/workflows/lint.yml
+++ b/.github/workflows/lint.yml
@@ -2,11 +2,16 @@ name: Lint
on: [push, pull_request]
jobs:
all:
- runs-on: macOS-latest
+ 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