Skip to content

Commit

Permalink
added Github Action for automating testing the updates to the nightly…
Browse files Browse the repository at this point in the history
… branch
  • Loading branch information
AspadaX committed Aug 23, 2024
1 parent d4e5847 commit 11f98ff
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 1 deletion.
22 changes: 22 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Build Test for Nightly

on:
push:
branches: [ "nightly" ]
pull_request:
branches: [ "nightly" ]

env:
CARGO_TERM_COLOR: always

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ Cargo.lock
/target
.DS_STORE
sentence-transformers
.*
.zed

0 comments on commit 11f98ff

Please sign in to comment.