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

[DO NOT MERGE] Test PR for #103 #104

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
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
17 changes: 17 additions & 0 deletions .github/workflows/ci-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,25 @@ env:
XCODE_VERSION: "15.0.0"

jobs:
changes:
runs-on: ubuntu-latest
outputs:
project: ${{ steps.filter.outputs.project }}
steps:
- uses: actions/checkout@v4
- uses: dorny/paths-filter@v2
id: filter
with:
filters: |
project:
- 'Workspace.swift'
- 'Tuist/**'
- 'Project.swift'

tuist-generation:
runs-on: macos-13
needs: changes
if: ${{ needs.changes.outputs.project == 'true' }}
timeout-minutes: 8
name: Run Tuist Generation
steps:
Expand Down
2 changes: 1 addition & 1 deletion Project.swift
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import ProjectDescriptionHelpers
// MARK: - Project

let project = Project(
name: "ApolloDev",
name: "ApolloDev", // This is the project name.
organizationName: "apollographql",
packages: [
.package(url: "https://github.com/Quick/Nimble.git", from: "10.0.0"),
Expand Down
Loading