Skip to content

Commit

Permalink
adjust GitHub Actions workflow to run tests as well as build
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobwhall committed Nov 3, 2024
1 parent 071ef84 commit 9c6f1c6
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build.yml → .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build
name: Build and Test

on:
pull_request:
Expand All @@ -9,10 +9,10 @@ env:
CARGO_INCREMENTAL: 0

jobs:
build:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: sudo apt-get install -y capnproto
- run: rustup update
- run: cargo build
- uses: actions/checkout@v4
- run: sudo apt-get install -y capnproto
- run: rustup update
- run: cargo test

0 comments on commit 9c6f1c6

Please sign in to comment.