Initial commit of cl-win32-types v1.0.0 #1
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: [ "main", "master" ] | |
| pull_request: | |
| branches: [ "main", "master" ] | |
| jobs: | |
| test: | |
| runs-on: windows-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Setup Common Lisp | |
| uses: 40ants/setup-lisp@v4 | |
| - name: Install SBCL latest | |
| shell: bash | |
| run: | | |
| ros config set sbcl-bin.version 2.5.6 | |
| ros install sbcl-bin | |
| - name: Install Dependencies & Run Tests | |
| shell: bash | |
| run: | | |
| ros install fiveam | |
| ros --eval "(asdf:test-system :cl-win32-types)" --quit |