github actions: increasing the size of the agents for sdk/tf generation #1111
Workflow file for this run
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
--- | |
name: Verify API Definitions can be Mapped | |
on: | |
pull_request: | |
types: ['opened', 'synchronize'] | |
paths: | |
- '.github/workflows/**' | |
- 'data/**' | |
jobs: | |
test: | |
runs-on: custom-linux-xl | |
strategy: | |
fail-fast: true | |
steps: | |
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@3447fd6a9f9e57506b15f895c5b76d3b197dc7c2 # v3.2.0 | |
with: | |
dotnet-version: 7.0.x | |
- name: run unit tests | |
run: | | |
cd ./data | |
make test |