Skip to content

Commit

Permalink
Merge pull request #16 from serpent-os/add-workflows
Browse files Browse the repository at this point in the history
Add GitHub Actions workflow
  • Loading branch information
ikeycode authored Sep 18, 2023
2 parents 5f5842d + 91cfb58 commit 3f36c93
Showing 1 changed file with 52 additions and 0 deletions.
52 changes: 52 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
name: CI

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
schedule:
- cron: '30 2 * * *'

env:
CARGO_TERM_COLOR: always

jobs:
build:
runs-on: ubuntu-latest
name: Build & Test Project

steps:
- name: Checkout source
uses: actions/checkout@v3

- name: Install Rust
uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy

- name: Check Formatting
run: cargo fmt --all -- --check

- name: Cargo Cache
uses: actions/cache@v3
with:
path: |
~/.cargo/registry/index/
~/.cargo/registry/cache/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}

- name: Build project
run: cargo build

- name: Test project
run: cargo test

- name: Run clippy
uses: giraffate/clippy-action@v1
with:
reporter: 'github-pr-check'
clippy_flags: --no-deps
filter_mode: nofilter
github_token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 3f36c93

Please sign in to comment.