From eaa170a24d6e7851c41b17ff60cf727798f59b77 Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Sun, 29 Dec 2024 13:50:05 -0800 Subject: add initial github actions --- src/apple_silicon/.github/dependabot.yml | 10 +++++++++ src/apple_silicon/.github/workflows/ci.yml | 35 ++++++++++++++++++++++++++++++ 2 files changed, 45 insertions(+) create mode 100644 src/apple_silicon/.github/dependabot.yml create mode 100644 src/apple_silicon/.github/workflows/ci.yml (limited to 'src') diff --git a/src/apple_silicon/.github/dependabot.yml b/src/apple_silicon/.github/dependabot.yml new file mode 100644 index 0000000..d062b44 --- /dev/null +++ b/src/apple_silicon/.github/dependabot.yml @@ -0,0 +1,10 @@ +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + - package-ecosystem: "cargo" + directory: "/" + schedule: + interval: "weekly" diff --git a/src/apple_silicon/.github/workflows/ci.yml b/src/apple_silicon/.github/workflows/ci.yml new file mode 100644 index 0000000..59ce8e7 --- /dev/null +++ b/src/apple_silicon/.github/workflows/ci.yml @@ -0,0 +1,35 @@ +name: 🦀 Rust CI + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +env: + CARGO_TERM_COLOR: always + +jobs: + build: + runs-on: macos-latest + + steps: + - uses: actions/checkout@v4 + + - uses: dtolnay/rust-toolchain@stable + with: + components: rustfmt, clippy + + - uses: Swatinem/rust-cache@v2 + + - name: Check formatting + run: cargo fmt --all -- --check + + - name: Run clippy + run: cargo clippy -- -D warnings + + - name: Run tests + run: cargo test --verbose + + - name: Build + run: cargo build --verbose -- cgit v1.2.3