diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml new file mode 100644 index 0000000..a7c4f04 --- /dev/null +++ b/.github/workflows/test.yaml @@ -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 \ No newline at end of file diff --git a/cel_spec/Cargo.toml b/cel_spec/Cargo.toml index 97c3701..40b295d 100644 --- a/cel_spec/Cargo.toml +++ b/cel_spec/Cargo.toml @@ -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"