Skip to content

Commit

Permalink
add gha, .gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
ryan-williams committed Aug 18, 2023
1 parent 65b8c05 commit 005d3dc
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Test
on:
push:
branches: [ main ]
pull_request:
branches: [ "**" ]
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- run: cargo --version
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
- run: cargo --version
- run: cargo test -- --nocapture
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/target

0 comments on commit 005d3dc

Please sign in to comment.