From 04430ec97828b8bd6b0c8be0bf9a88d2305e79c3 Mon Sep 17 00:00:00 2001 From: paku Date: Sat, 11 Jan 2025 20:12:17 +0900 Subject: [PATCH] Add GitHub Actions for mirror repo --- .github/workflows/CI.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/workflows/CI.yml diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml new file mode 100644 index 0000000..cbbeb84 --- /dev/null +++ b/.github/workflows/CI.yml @@ -0,0 +1,28 @@ +name: 'CI' + +on: + push: + branches: + - 'master' + pull_request: + +jobs: + tests: + runs-on: ubuntu-latest + + strategy: + matrix: + lisp: + - sbcl-bin + + env: + LISP: ${{ matrix.lisp }} + + steps: + - uses: actions/checkout@v4 + - uses: 40ants/setup-lisp@v4 + with: + asdf-system: hsx + - uses: 40ants/run-tests@v2 + with: + asdf-system: hsx \ No newline at end of file