From 54b6506975398104ceaadbd7eb428790c03ea88a Mon Sep 17 00:00:00 2001 From: Nat Quayle Nelson Date: Sun, 14 Sep 2025 15:53:41 -0500 Subject: [PATCH] add ci workflow --- .github/workflows/test.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..bc34c22 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,21 @@ +name: CI + +on: [push, pull_request] + +jobs: + test-core: + strategy: + fail-fast: false + matrix: + os: [ubuntu-latest] + runs-on: ${{ matrix.os }} + env: + CI_OS_NAME: ${{ matrix.os }} + steps: + - uses: actions/checkout@v3 + - uses: https://k7izh9.gitea.cloud/kiss-lang/setup-lix@1.0.2 + with: + lix-version: 15.12.0 + - run: lix download + - run: ./test.sh + shell: bash \ No newline at end of file