Skip to content

fix: ordered need 1.21 #109

fix: ordered need 1.21

fix: ordered need 1.21 #109

Workflow file for this run

# auto-generated by scripts/dependabot. DO NOT EDIT.
name: build
on: [push, pull_request]
jobs:
slice:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
env:
GO111MODULE: on
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: ./exp/slice/go.mod
cache: true
- working-directory: ./exp/slice
run: |
go mod download
go build -v ./...
go test -race -v ./...
teatest:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
env:
GO111MODULE: on
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: ./exp/teatest/go.mod
cache: true
- working-directory: ./exp/teatest
run: |
go mod download
go build -v ./...
go test -race -v ./...
strings:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
env:
GO111MODULE: on
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: ./exp/strings/go.mod
cache: true
- working-directory: ./exp/strings
run: |
go mod download
go build -v ./...
go test -race -v ./...
ordered:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
env:
GO111MODULE: on
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: ./exp/ordered/go.mod
cache: true
- working-directory: ./exp/ordered
run: |
go mod download
go build -v ./...
go test -race -v ./...
higherorder:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
env:
GO111MODULE: on
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: ./exp/higherorder/go.mod
cache: true
- working-directory: ./exp/higherorder
run: |
go mod download
go build -v ./...
go test -race -v ./...
editor:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
env:
GO111MODULE: on
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: ./editor/go.mod
cache: true
- working-directory: ./editor
run: |
go mod download
go build -v ./...
go test -race -v ./...