Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Run codegen / build / test CI workflow on every commit #1406

Merged
merged 2 commits into from
Mar 15, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions .github/workflows/codegen-build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ env:
jobs:
codegen-build-test:
runs-on: macos-14-xlarge
environment: Codegen-Build-Test
env:
DEVELOPER_DIR: /Applications/Xcode_15.2.app/Contents/Developer
steps:
Expand Down Expand Up @@ -60,8 +59,8 @@ jobs:
run: ./scripts/ci_steps/log_tool_versions.sh
- name: Code-Generate SDK
run: ./scripts/ci_steps/codegen_sdk.sh
- name: Build and Run Unit Tests
run: |
swift build --build-tests
swift test --skip-build
- name: Build SDK with Unit Tests
run: swift build --build-tests
- name: Run Unit Tests
run: swift test --skip-build

Loading