Skip to content

update dependenices, mostly to remediate https://github.com/C2FO/vfs/… #398

update dependenices, mostly to remediate https://github.com/C2FO/vfs/…

update dependenices, mostly to remediate https://github.com/C2FO/vfs/… #398

Workflow file for this run

name: Go
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
strategy:
fail-fast: false
matrix:
go-version: [1.22, 1.23]
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
cache: false
- name: Checkout code
uses: actions/checkout@v4
- name: Test
run: go test ./...