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