Skip to content

[bench] repeatable benchmarks #9

[bench] repeatable benchmarks

[bench] repeatable benchmarks #9

Workflow file for this run

name: Unit Tests
on:
push:
branches: [master]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
name: Unit Tests
strategy:
matrix:
compiler: ["sbcl", "ecl"]
steps:
- name: Clone the Project
uses: actions/checkout@v4
- name: Set up Common Lisp
uses: fosskers/common-lisp@v1.0.1
with:
compiler: ${{ matrix.compiler }}
- name: Test
run: |
vend test ${{ matrix.compiler }}