Skip to content

Commit

Permalink
ci: add test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
thesayyn committed Feb 26, 2024
1 parent f97cabe commit 4bcac7f
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
16 changes: 16 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Tests
on: [push, pull_request]

jobs:
test:
name: cargo test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: Swatinem/rust-cache@v2
- uses: dtolnay/rust-toolchain@stable
- name: Install Protoc
uses: arduino/setup-protoc@v3
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- run: cargo test --all-features
1 change: 0 additions & 1 deletion cel_spec/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ proc-macro = true
prost = "0.12"
prost-types = "0.12"
prost-reflect = { version = "0.13.0", features = ["text-format"]}
quote = "1.0.35"

[build_dependencies]
prost-build = "0.12.3"

0 comments on commit 4bcac7f

Please sign in to comment.