automaton

An automaton library written in Rust
Log | Files | Refs

commit 9c81f079d1508d82400ca36e68d99e63499172ce
parent 367ed96c361ef0f60cf37b6fa4df071e1543cb2d
Author: Ethan Long <ethandavidlong@gmail.com>
Date:   Mon, 26 Feb 2024 21:33:20 +1100

Maybe fixed CI?

Diffstat:
M.gitlab-ci.yml | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml @@ -14,10 +14,10 @@ build-js: SKIP_RUST_BUILD: "true" stage: build script: - - cd web && bun run build + - cd web && bun i && bun run build test-rust: image: "rust:latest" stage: test script: - - cargo test --nocapture + - cargo test -- --nocapture