-
Notifications
You must be signed in to change notification settings - Fork 135
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Sergiy/eng 4747 add composition wrapper to the engine (#725)
- Loading branch information
Showing
222 changed files
with
6,053 additions
and
8,247 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 |
---|---|---|
@@ -0,0 +1,72 @@ | ||
name: execution | ||
on: | ||
pull_request: | ||
branches: | ||
- master | ||
paths: | ||
- 'v2/**' | ||
- 'execution/**' | ||
- '.github/workflows/execution.yml' | ||
push: | ||
branches: | ||
- master | ||
paths: | ||
- 'v2/**' | ||
- 'execution/**' | ||
- '.github/workflows/execution.yml' | ||
jobs: | ||
test: | ||
name: Build and test (go ${{ matrix.go }} / ${{ matrix.os }}) | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
go: [ '1.21' ] | ||
os: [ubuntu-latest, windows-latest] | ||
steps: | ||
- name: Set git to use LF | ||
run: | | ||
git config --global core.autocrlf false | ||
git config --global core.eol lf | ||
- name: Check out code into the Go module directory | ||
uses: actions/checkout@v3 | ||
- name: Set up Go ${{ matrix.go }} | ||
uses: actions/setup-go@v4 | ||
with: | ||
go-version: ^${{ matrix.go }} | ||
id: go | ||
- name: CI | ||
working-directory: execution | ||
run: make ci | ||
- name: Run tests under race detector | ||
working-directory: execution | ||
if: runner.os != 'Windows' # These are very slow on Windows, skip them | ||
run: make test-race | ||
|
||
lint: | ||
name: Linters | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out code into the Go module directory | ||
uses: actions/checkout@v3 | ||
- name: Set up Go 1.21 | ||
uses: actions/setup-go@v4 | ||
with: | ||
go-version: 1.21 | ||
- name: Run linters | ||
uses: golangci/golangci-lint-action@v3 | ||
with: | ||
working-directory: execution | ||
version: v1.55.2 | ||
args: --timeout=3m | ||
ci: | ||
name: CI Success | ||
if: ${{ always() }} | ||
runs-on: ubuntu-latest | ||
needs: [test, lint] | ||
steps: | ||
- run: exit 1 | ||
if: >- | ||
${{ | ||
contains(needs.*.result, 'failure') | ||
|| contains(needs.*.result, 'cancelled') | ||
}} |
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
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
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
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
Oops, something went wrong.