Skip to content

Commit

Permalink
ci: Add GitHub Actions workflow to run tests on pull requests and pushes
Browse files Browse the repository at this point in the history
  • Loading branch information
CoffeSiberian committed Dec 29, 2024
1 parent 373749c commit fc6a9ae
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/run_test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: run_test

on:
pull_request:
types: [opened, reopened]
push:
branches:
- "**"

jobs:
run_test_ubuntu:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Install Rust stable
uses: dtolnay/rust-toolchain@stable

- name: Run tests
run: cargo test

0 comments on commit fc6a9ae

Please sign in to comment.