aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/ci.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r--.github/workflows/ci.yml13
1 files changed, 13 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 0d6e641..df4ad3d 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -26,6 +26,19 @@ jobs:
- name: Run Clippy
run: cargo clippy --all-targets --all-features
+ e2e-tests:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v4
+
+ - name: Ensure latest Rust stable
+ run: |
+ rustup update stable
+ rustup default stable
+
+ - name: Run end-to-end tests
+ run: bash ./scripts/test-e2e.sh
+
fuzz_parser:
runs-on: ubuntu-latest
steps: