refactor: move term into exp (#31) #183
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 }} | |
defaults: | |
run: | |
working-directory: ./exp/slice | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version-file: ./exp/slice/go.mod | |
cache: true | |
cache-dependency-path: ./exp/slice.sum | |
- run: go build -v ./... | |
- run: go test -race -v ./... | |
teatest: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
runs-on: ${{ matrix.os }} | |
defaults: | |
run: | |
working-directory: ./exp/teatest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version-file: ./exp/teatest/go.mod | |
cache: true | |
cache-dependency-path: ./exp/teatest.sum | |
- run: go build -v ./... | |
- run: go test -race -v ./... | |
strings: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
runs-on: ${{ matrix.os }} | |
defaults: | |
run: | |
working-directory: ./exp/strings | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version-file: ./exp/strings/go.mod | |
cache: true | |
cache-dependency-path: ./exp/strings.sum | |
- run: go build -v ./... | |
- run: go test -race -v ./... | |
ordered: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
runs-on: ${{ matrix.os }} | |
defaults: | |
run: | |
working-directory: ./exp/ordered | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version-file: ./exp/ordered/go.mod | |
cache: true | |
cache-dependency-path: ./exp/ordered.sum | |
- run: go build -v ./... | |
- run: go test -race -v ./... | |
higherorder: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
runs-on: ${{ matrix.os }} | |
defaults: | |
run: | |
working-directory: ./exp/higherorder | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version-file: ./exp/higherorder/go.mod | |
cache: true | |
cache-dependency-path: ./exp/higherorder.sum | |
- run: go build -v ./... | |
- run: go test -race -v ./... | |
editor: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
runs-on: ${{ matrix.os }} | |
defaults: | |
run: | |
working-directory: ./editor | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version-file: ./editor/go.mod | |
cache: true | |
cache-dependency-path: ./editor.sum | |
- run: go build -v ./... | |
- run: go test -race -v ./... |