Skip to content

Commit

Permalink
chore: setup go in ci
Browse files Browse the repository at this point in the history
  • Loading branch information
qvalentin committed Jan 14, 2025
1 parent e1dd240 commit 39e190b
Showing 1 changed file with 23 additions and 20 deletions.
43 changes: 23 additions & 20 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -1,23 +1,26 @@
name: Build/test
on:
push:
branches:
- "master"
pull_request:
push:
branches:
- 'master'
pull_request:
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
matrix:
os: [macos-latest, ubuntu-latest]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.11'
- uses: actions/setup-node@v3
with:
node-version: '18'
- run: npm install
- run: npm test
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
matrix:
os: [macos-latest, ubuntu-latest]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.11'
- uses: actions/setup-go@v5
with:
go-version: '1.23'
- uses: actions/setup-node@v3
with:
node-version: '18'
- run: npm install
- run: npm test

0 comments on commit 39e190b

Please sign in to comment.