Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -123,10 +123,23 @@ jobs:
- uses: ./.github/actions/setup-rust
with:
go: 'true'
go-cache: 'false'
- uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # ratchet:actions/cache@v4
id: go-build-cache
with:
path: ~/.cache/go-build
key: go-build-e2e-smoke-${{ runner.os }}-${{ hashFiles('go-version', 'Cargo.lock', 'crates/**', 'tests/**', 'prelude/**') }}
restore-keys: |
go-build-e2e-smoke-${{ runner.os }}-
- run: cargo build -p lisette --locked
- run: cargo test -p tests --test e2e_smoke --locked -- --format terse
- run: cargo test -p tests --test e2e_learn --locked -- --format terse
- run: cargo test -p tests --test e2e_run --locked -- --format terse
- if: github.ref == 'refs/heads/main' && steps.go-build-cache.outputs.cache-hit != 'true'
uses: actions/cache/save@0057852bfaa89a56745cba8c7296529d2fc39830 # ratchet:actions/cache@v4
with:
path: ~/.cache/go-build
key: ${{ steps.go-build-cache.outputs.cache-primary-key }}

stdlib-check:
name: Stdlib check
Expand Down
Loading