Skip to content

Build(deps): bump actions/setup-go from 5 to 6 #10

Build(deps): bump actions/setup-go from 5 to 6

Build(deps): bump actions/setup-go from 5 to 6 #10

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v6
with:
go-version: '1.26'
- run: go build ./...
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v6
with:
go-version: '1.26'
- uses: golangci/golangci-lint-action@v7
with:
version: v2.11.3
test:
runs-on: ubuntu-latest
continue-on-error: true
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v6
with:
go-version: '1.26'
- name: Setup Keyring
run: |
sudo apt-get update && sudo apt-get install -y gnome-keyring
echo 'testpass' | gnome-keyring-daemon --unlock
- run: go test ./...