Skip to content

Commit

Permalink
Tangent to test out GA CI
Browse files Browse the repository at this point in the history
  • Loading branch information
alexeden committed Jan 31, 2025
1 parent dea0c40 commit 562f46b
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: CI

on:
push:
pull_request:
branches:
- main


env:
# Disable incremental compilation for faster from-scratch builds
CARGO_INCREMENTAL: 0
# Make sure CI fails on all warnings, including Clippy lints
RUSTFLAGS: "-Dwarnings"


jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: rustup toolchain install nightly --profile minimal
- run: cargo clippy --all-targets --all-features

0 comments on commit 562f46b

Please sign in to comment.