Skip to content
This repository was archived by the owner on Aug 13, 2025. It is now read-only.

Commit 731dc50

Browse files
authored
Create testing.yml
1 parent 7a9906a commit 731dc50

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/testing.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: PR Test
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- '**'
7+
8+
jobs:
9+
build-and-test:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Checkout code
13+
uses: actions/checkout@v4
14+
15+
- name: Set up Rust
16+
uses: actions/setup-rust@v1
17+
with:
18+
rust-version: stable
19+
20+
- name: Build
21+
run: cargo build --verbose
22+
23+
- name: Test
24+
run: cargo test --verbose

0 commit comments

Comments
 (0)