Skip to content

Commit

Permalink
Added test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Gprisco committed Apr 7, 2024
1 parent 26a621f commit c9b1dd0
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Rust tests

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

jobs:
build:
runs-on: ubuntu-latest

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

- name: Set up Rust
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable

- name: Build and test
run: cargo test

0 comments on commit c9b1dd0

Please sign in to comment.