Skip to content

Commit

Permalink
Create rust.yml
Browse files Browse the repository at this point in the history
cargo test workflow
  • Loading branch information
Cydhra authored Jul 9, 2024
1 parent bc06ffb commit 093b4a9
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Rust

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

env:
CARGO_TERM_COLOR: always
RUSTFLAGS: -C target-cpu=native

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build --verbose --all-features
- name: Run tests
run: cargo test --verbose --all-features

0 comments on commit 093b4a9

Please sign in to comment.