Skip to content

Commit

Permalink
ops: add workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
juangirini committed Feb 5, 2025
1 parent e015615 commit 7780555
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
name: Rust

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Install Rust stable
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true

- name: Install Rust nightly
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: false

- name: Install dependencies
run: cargo fetch

- name: Build
run: cargo build --verbose

- name: Run cargo fmt
run: cargo +nightly fmt -- --check

- name: Run cargo clippy
run: cargo clippy -- -D warnings

- name: Run cargo test
run: cargo test --verbose

0 comments on commit 7780555

Please sign in to comment.