Skip to content

Commit

Permalink
testaction wip 1
Browse files Browse the repository at this point in the history
  • Loading branch information
trobro committed Jul 23, 2024
1 parent 293ef7d commit c78d82f
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: test
on: [push, pull_request]
jobs:
test:
name: ${{ matrix.name }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
rust: [stable]
steps:
- uses: actions/checkout@v3
- run: cd hjson && cargo build
- run: cd hjson_tests && cargo test
- run: cd hjson && cargo doc

0 comments on commit c78d82f

Please sign in to comment.