chore(deps): bump github/codeql-action from 2 to 3 (#25) #156
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: "🧩 Continuous Integration" | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
CI: | |
runs-on: ubuntu-latest | |
continue-on-error: ${{ matrix.continue-on-error }} | |
strategy: | |
matrix: | |
go-version: [ "1.22" ] | |
continue-on-error: [ false ] | |
include: | |
- go-version: "latest" | |
continue-on-error: true | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Devbox | |
uses: jetify-com/[email protected] | |
- name: Set up Go ${{ matrix.go-version }} | |
run: devbox add go@${{ matrix.go-version }} | |
- name: "🧹 Lint" | |
run: devbox run -- make lint | |
- name: "🧪 Test" | |
run: devbox run -- make test |