Add initial implementation for version 7 UUIDs (based on IETF draft) #49
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Benchmark | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
workflow_dispatch: | |
jobs: | |
test: | |
name: ${{ matrix.lisp }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
lisp: [sbcl-bin, ccl-bin/1.12.1, ecl/21.2.1] | |
os: [ubuntu-latest] | |
env: | |
LISP: ${{ matrix.lisp }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Lisp | |
continue-on-error: true | |
uses: 40ants/setup-lisp@v2 | |
with: | |
qlfile-template: | | |
dist ultralisp http://dist.ultralisp.org | |
- name: Run benchmarks | |
shell: bash | |
run: | | |
ros run --eval '(progn (ql:quickload :frugal-uuid/benchmark) (asdf:test-system :frugal-uuid/benchmark) (quit))' |