Skip to content

update: tuist

update: tuist #8

Workflow file for this run

name: checks
on:
push:
branches: [ "main", "develop" ]
pull_request:
branches: [ "main", "develop" ]
env:
CI: true
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- uses: jdx/mise-action@v2
with:
version: 2024.6.3
install: true
cache: true
- uses: mobiledevops/secret-to-file-action@v1
with:
base64-encoded-secret: ${{ secrets.DEBUG_XCCONFIG }}
filename: "Debug.xcconfig"
working-directory: ".configurations/.xcconfig"
- uses: mobiledevops/secret-to-file-action@v1
with:
base64-encoded-secret: ${{ secrets.RELEASE_XCCONFIG }}
filename: "Release.xcconfig"
working-directory: ".configurations/.xcconfig"
- uses: mobiledevops/secret-to-file-action@v1
with:
base64-encoded-secret: ${{ secrets.SHARED_XCCONFIG }}
filename: "Shared.xcconfig"
working-directory: ".configurations/.xcconfig"
- run: make prepare
- run: make build
test:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- uses: jdx/mise-action@v2
with:
version: 2024.6.3
install: true
cache: true
- uses: mobiledevops/secret-to-file-action@v1
with:
base64-encoded-secret: ${{ secrets.DEBUG_XCCONFIG }}
filename: "Debug.xcconfig"
is-executable: true
working-directory: ".configurations/.xcconfig"
- uses: mobiledevops/secret-to-file-action@v1
with:
base64-encoded-secret: ${{ secrets.RELEASE_XCCONFIG }}
filename: "Release.xcconfig"
is-executable: true
working-directory: ".configurations/.xcconfig"
- uses: mobiledevops/secret-to-file-action@v1
with:
base64-encoded-secret: ${{ secrets.SHARED_XCCONFIG }}
filename: "Shared.xcconfig"
is-executable: true
working-directory: ".configurations/.xcconfig"
- run: make prepare
run: make test

Check failure on line 68 in .github/workflows/checks.yml

View workflow run for this annotation

GitHub Actions / checks

Invalid workflow file

The workflow is not valid. .github/workflows/checks.yml (Line: 68, Col: 5): Unexpected value 'run'

Check failure on line 68 in .github/workflows/checks.yml

View workflow run for this annotation

GitHub Actions / checks

Invalid workflow file

The workflow is not valid. .github/workflows/checks.yml (Line: 68, Col: 5): Unexpected value 'run'
lint-swiftlint:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- uses: jdx/mise-action@v2
with:
version: 2024.6.3
install: true
cache: true
- run: make ci-lint-swiftlint
lint-swiftformat:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- uses: jdx/mise-action@v2
with:
version: 2024.6.3
install: true
cache: true
- run: make ci-lint-swiftformat