mirror of
https://github.com/joho/godotenv.git
synced 2026-09-02 09:14:37 +00:00
"NOTICE: windows-latest requests are being redirected to windows-2025-vs2026 by June 15, 2028"
21 lines
466 B
YAML
21 lines
466 B
YAML
name: CI
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
go: [ '1.26', '1.25', '1.24', '1.23', '1.22' ]
|
|
os: [ ubuntu-latest, macOS-latest, windows-2025-vs2026 ]
|
|
name: ${{ matrix.os }} Go ${{ matrix.go }} Tests
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
- name: Setup go
|
|
uses: actions/setup-go@v6
|
|
with:
|
|
go-version: ${{ matrix.go }}
|
|
- run: go test
|