iced/.github/workflows/lint.yml
Héctor Ramón Jiménez 8475cd7b25
Run lint workflow in ubuntu-latest
`macOS-latest` seems to abort the build randomly
for some reason.
2024-04-07 13:00:40 +02:00

12 lines
247 B
YAML

name: Lint
on: [push, pull_request]
jobs:
all:
runs-on: ubuntu-latest
steps:
- uses: hecrj/setup-rust-action@v2
with:
components: clippy
- uses: actions/checkout@master
- name: Check lints
run: cargo lint