Skip to content

Commit

Permalink
feat: add nightly submodule update and check
Browse files Browse the repository at this point in the history
  • Loading branch information
hiltontj committed Mar 16, 2024
1 parent a9f8f08 commit f2ee8aa
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 1 deletion.
28 changes: 28 additions & 0 deletions .github/workflows/cts.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: CTS Submodule Update and Test

on:
workflow_dispatch:
schedule:
- cron: 0 0 * * *

env:
CARGO_TERM_COLOR: always

jobs:
submodule-update:
name: Submodule Update & Test
runs-on: ubuntu-latest
steps:
- name: 📦 Checkout
uses: actions/checkout@v3
with:
submodules: true
- name: 🧱 Update Submodules
run: |
git pull --recursive-submodules
git submodule update --recursive --remote
- name: 🦀 Rust Toolchain & Cache
uses: actions-rust-lang/setup-rust-toolchain@v1
- name: 🧪 Test
run: cargo test

2 changes: 1 addition & 1 deletion jsonpath-compliance-test-suite

0 comments on commit f2ee8aa

Please sign in to comment.