Skip to content

Commit

Permalink
ci: configure basic CI
Browse files Browse the repository at this point in the history
Signed-off-by: Anthony THOMAS <anthony.thomas@worldline.com>
  • Loading branch information
Anthony THOMAS committed Jun 28, 2024
1 parent 478765b commit f60b7ca
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
---
name: Rust

# yamllint disable-line rule:truthy
on:
push:
pull_request:
workflow_dispatch:
schedule: [cron: "40 1 * * *"]

env:
RUSTFLAGS: -Dwarnings
RUST_BACKTRACE: 1
CARGO_TERM_COLOR: always

permissions:
contents: read

jobs:

clippy:
name: Clippy
runs-on: ubuntu-latest
if: github.event_name != 'pull_request'
timeout-minutes: 45
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@nightly
with:
components: clippy,rustc-dev
- run: cargo clippy --color always --verbose --all-targets --all-features --tests

build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
components: rustc-dev
- run: cargo check --benches --all-features --release

0 comments on commit f60b7ca

Please sign in to comment.