misc: fix various stylistic issues #36
This file contains hidden or 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: CI | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
test: | |
name: ${{ matrix.lisp }} on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
lisp: [sbcl-bin] | |
os: [ubuntu-latest, macos-latest] | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install external dependencies for Linux | |
if: matrix.os == 'ubuntu-latest' | |
run: | | |
sudo apt-get install -y libsecp256k1-dev | |
- name: Install external dependencies for macOS | |
if: matrix.os == 'macos-latest' | |
run: | | |
brew install secp256k1 | |
- name: Install Roswell | |
env: | |
LISP: ${{ matrix.lisp }} | |
run: | | |
curl -L https://raw.githubusercontent.com/roswell/roswell/master/scripts/install-for-ci.sh | sh -x | |
- name: Run tests | |
env: | |
LISP: ${{ matrix.lisp }} | |
run: | | |
ros -e '(ql:quickload :bp/tests)' \ | |
-e '(setf fiveam:*on-error* :debug)' \ | |
-e '(setf fiveam:*on-failure* :debug)' \ | |
-e '(setf *debugger-hook* (lambda (c h) (declare (ignore c h)) (uiop:quit -1)))' \ | |
-e '(asdf:test-system "bp")' |