Skip to content

Commit

Permalink
run cargo test in github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
gin66 committed Jan 31, 2025
1 parent 2bafdc8 commit dca7c37
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/cargo_test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Build examples

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

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v4
- name: Check rust version
run: rustup show
- name: Run tests
run: cargo test

0 comments on commit dca7c37

Please sign in to comment.