Skip to content

Introduce WritableFS #615

Introduce WritableFS

Introduce WritableFS #615

Workflow file for this run

on: [push, pull_request]
name: Test
jobs:
test:
strategy:
fail-fast: false
matrix:
target:
- goos: js
goarch: wasm
- goos: darwin
goarch: amd64
- goos: darwin
goarch: arm64
- goos: linux
goarch: amd64
- goos: linux
goarch: arm
goarm: 7
- goos: linux
goarch: arm64
- goos: windows
goarch: amd64
go:
- '1.23.x'
- '1.24.x'
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Set up Go ${{ matrix.go }}
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- run: go version
- name: Go vet
run: go vet -v ./...
- name: Check coverage
uses: shogo82148/actions-goveralls@v1
with:
flag-name: Go-${{ matrix.go }}
parallel: true
finish:
needs: test
runs-on: ubuntu-latest
steps:
- uses: shogo82148/actions-goveralls@v1
with:
parallel-finished: true