Skip to content

Update versions of go and node #392

Update versions of go and node

Update versions of go and node #392

Workflow file for this run

name: test
on:
pull_request:
branches:
- '**'
push:
branches:
- master
jobs:
test:
strategy:
fail-fast: false
matrix:
go-version: [1.19.x, 1.20.x, 1.21.x]
os: [ubuntu-latest, macos-latest, windows-latest]
tags: [cli, desktop]
runs-on: ${{ matrix.os }}
steps:
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v4
- name: Install Dependencies (Linux)
run: sudo apt-get update && sudo apt-get install build-essential libgtk-3-dev libwebkit2gtk-4.0-dev
if: matrix.os == 'ubuntu-latest'
- name: Test
run: go test -v ./...