-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
22 changed files
with
453 additions
and
401 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,28 @@ | ||
on: | ||
workflow_run: | ||
workflows: [scenario-server] | ||
types: [completed] | ||
# Generated file. DO NOT EDIT. | ||
'on': | ||
push: | ||
paths: | ||
- dotnet/** | ||
- .github/workflows/dotnet.yaml | ||
- dotnet/** | ||
- .github/workflows/dotnet.yaml | ||
pull_request: | ||
paths: | ||
- dotnet/** | ||
- .github/workflows/dotnet.yaml | ||
|
||
- dotnet/** | ||
- .github/workflows/dotnet.yaml | ||
workflow_run: | ||
workflows: | ||
- scenario-server | ||
types: | ||
- completed | ||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
if: ${{ github.event.workflow_run == null || github.event.workflow_run.conclusion == 'success' }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- uses: actions/setup-dotnet@v4 | ||
with: | ||
dotnet-version: '3.1.x' | ||
|
||
- working-directory: ./dotnet/EasyRacer.Tests | ||
run: | | ||
dotnet test | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-dotnet@v4 | ||
with: | ||
dotnet-version: 3.1.x | ||
- run: dotnet test | ||
defaults: | ||
run: | ||
working-directory: dotnet |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,28 @@ | ||
on: | ||
workflow_run: | ||
workflows: [scenario-server] | ||
types: [completed] | ||
# Generated file. DO NOT EDIT. | ||
'on': | ||
push: | ||
paths: | ||
- go-stdlib/** | ||
- .github/workflows/go-stdlib.yaml | ||
- go-stdlib/** | ||
- .github/workflows/go-stdlib.yaml | ||
pull_request: | ||
paths: | ||
- go-stdlib/** | ||
- .github/workflows/go-stdlib.yaml | ||
|
||
- go-stdlib/** | ||
- .github/workflows/go-stdlib.yaml | ||
workflow_run: | ||
workflows: | ||
- scenario-server | ||
types: | ||
- completed | ||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
if: ${{ github.event.workflow_run == null || github.event.workflow_run.conclusion == 'success' }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- uses: actions/setup-go@v5 | ||
with: | ||
go-version-file: './go-stdlib/go.mod' | ||
|
||
- run: go test ./... | ||
working-directory: ./go-stdlib | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-go@v5 | ||
with: | ||
go-version-file: ./go-stdlib/go.mod | ||
- run: go test ./... | ||
defaults: | ||
run: | ||
working-directory: go-stdlib |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,31 @@ | ||
on: | ||
workflow_run: | ||
workflows: [scenario-server] | ||
types: [completed] | ||
# Generated file. DO NOT EDIT. | ||
'on': | ||
push: | ||
paths: | ||
- java-loom/** | ||
- .github/workflows/java-loom.yaml | ||
- java-loom/** | ||
- .github/workflows/java-loom.yaml | ||
pull_request: | ||
paths: | ||
- java-loom/** | ||
- .github/workflows/java-loom.yaml | ||
|
||
- java-loom/** | ||
- .github/workflows/java-loom.yaml | ||
workflow_run: | ||
workflows: | ||
- scenario-server | ||
types: | ||
- completed | ||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
if: ${{ github.event.workflow_run == null || github.event.workflow_run.conclusion == 'success' }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- uses: actions/setup-java@v4 | ||
with: | ||
distribution: 'temurin' | ||
java-version: '17' | ||
cache: 'gradle' | ||
|
||
- run: ./gradlew test | ||
working-directory: ./java-loom | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-java@v4 | ||
with: | ||
distribution: temurin | ||
java-version: '20' | ||
cache: gradle | ||
- run: ./gradlew test | ||
working-directory: java-loom | ||
defaults: | ||
run: | ||
working-directory: java-loom |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,32 @@ | ||
on: | ||
workflow_run: | ||
workflows: [scenario-server] | ||
types: [completed] | ||
# Generated file. DO NOT EDIT. | ||
'on': | ||
push: | ||
paths: | ||
- javascript-stdlib/** | ||
- .github/workflows/javascript-stdlib.yaml | ||
- javascript-stdlib/** | ||
- .github/workflows/javascript-stdlib.yaml | ||
pull_request: | ||
paths: | ||
- javascript-stdlib/** | ||
- .github/workflows/javascript-stdlib.yaml | ||
|
||
- javascript-stdlib/** | ||
- .github/workflows/javascript-stdlib.yaml | ||
workflow_run: | ||
workflows: | ||
- scenario-server | ||
types: | ||
- completed | ||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
if: ${{ github.event.workflow_run == null || github.event.workflow_run.conclusion == 'success' }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: 21.6.0 | ||
cache: 'npm' | ||
cache-dependency-path: javascript-stdlib/package-lock.json | ||
|
||
- working-directory: ./javascript-stdlib | ||
run: | | ||
npm ci | ||
npm test | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: 21.6.0 | ||
cache: npm | ||
cache-dependency-path: javascript-stdlib/package-lock.json | ||
- run: |- | ||
npm ci | ||
npm test | ||
defaults: | ||
run: | ||
working-directory: javascript-stdlib |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,31 @@ | ||
on: | ||
workflow_run: | ||
workflows: [scenario-server] | ||
types: [completed] | ||
# Generated file. DO NOT EDIT. | ||
'on': | ||
push: | ||
paths: | ||
- kotlin-arrow/** | ||
- .github/workflows/kotlin-arrow.yaml | ||
- kotlin-arrow/** | ||
- .github/workflows/kotlin-arrow.yaml | ||
pull_request: | ||
paths: | ||
- kotlin-arrow/** | ||
- .github/workflows/kotlin-arrow.yaml | ||
|
||
- kotlin-arrow/** | ||
- .github/workflows/kotlin-arrow.yaml | ||
workflow_run: | ||
workflows: | ||
- scenario-server | ||
types: | ||
- completed | ||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
if: ${{ github.event.workflow_run == null || github.event.workflow_run.conclusion == 'success' }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- uses: actions/setup-java@v4 | ||
with: | ||
distribution: 'temurin' | ||
java-version: '17' | ||
cache: 'gradle' | ||
|
||
- run: ./gradlew test | ||
working-directory: ./kotlin-arrow | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-java@v4 | ||
with: | ||
distribution: temurin | ||
java-version: '20' | ||
cache: gradle | ||
- run: ./gradlew test | ||
working-directory: kotlin-arrow | ||
defaults: | ||
run: | ||
working-directory: kotlin-arrow |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,31 @@ | ||
on: | ||
workflow_run: | ||
workflows: [scenario-server] | ||
types: [completed] | ||
# Generated file. DO NOT EDIT. | ||
'on': | ||
push: | ||
paths: | ||
- kotlin-coroutines/** | ||
- .github/workflows/kotlin-coroutines.yaml | ||
- kotlin-coroutines/** | ||
- .github/workflows/kotlin-coroutines.yaml | ||
pull_request: | ||
paths: | ||
- kotlin-coroutines/** | ||
- .github/workflows/kotlin-coroutines.yaml | ||
|
||
- kotlin-coroutines/** | ||
- .github/workflows/kotlin-coroutines.yaml | ||
workflow_run: | ||
workflows: | ||
- scenario-server | ||
types: | ||
- completed | ||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
if: ${{ github.event.workflow_run == null || github.event.workflow_run.conclusion == 'success' }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- uses: actions/setup-java@v4 | ||
with: | ||
distribution: 'temurin' | ||
java-version: '17' | ||
cache: 'gradle' | ||
|
||
- run: ./gradlew test | ||
working-directory: ./kotlin-coroutines | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-java@v4 | ||
with: | ||
distribution: temurin | ||
java-version: '20' | ||
cache: gradle | ||
- run: ./gradlew test | ||
working-directory: kotlin-coroutines | ||
defaults: | ||
run: | ||
working-directory: kotlin-coroutines |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,31 @@ | ||
on: | ||
workflow_run: | ||
workflows: [scenario-server] | ||
types: [completed] | ||
# Generated file. DO NOT EDIT. | ||
'on': | ||
push: | ||
paths: | ||
- kotlin-splitties/** | ||
- .github/workflows/kotlin-splitties.yaml | ||
- kotlin-splitties/** | ||
- .github/workflows/kotlin-splitties.yaml | ||
pull_request: | ||
paths: | ||
- kotlin-splitties/** | ||
- .github/workflows/kotlin-splitties.yaml | ||
|
||
- kotlin-splitties/** | ||
- .github/workflows/kotlin-splitties.yaml | ||
workflow_run: | ||
workflows: | ||
- scenario-server | ||
types: | ||
- completed | ||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
if: ${{ github.event.workflow_run == null || github.event.workflow_run.conclusion == 'success' }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- uses: actions/setup-java@v4 | ||
with: | ||
distribution: 'temurin' | ||
java-version: '17' | ||
cache: 'gradle' | ||
|
||
- run: ./gradlew test | ||
working-directory: ./kotlin-splitties | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-java@v4 | ||
with: | ||
distribution: temurin | ||
java-version: '20' | ||
cache: gradle | ||
- run: ./gradlew test | ||
working-directory: kotlin-splitties | ||
defaults: | ||
run: | ||
working-directory: kotlin-splitties |
Oops, something went wrong.