Skip to content

Commit

Permalink
ci
Browse files Browse the repository at this point in the history
  • Loading branch information
jDomantas committed May 15, 2024
1 parent ca56151 commit df7416c
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
on: [push, pull_request]

name: Tests

jobs:
test:
name: Test Suite
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v2

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

- name: Cargo build
uses: actions-rs/cargo@v1
with:
command: build
args: --workspace

- name: Cargo test
uses: actions-rs/cargo@v1
with:
command: test
args: --workspace

0 comments on commit df7416c

Please sign in to comment.