Skip to content

Only run the Unit tests on the github workflow, don't run the UI tests #2

Only run the Unit tests on the github workflow, don't run the UI tests

Only run the Unit tests on the github workflow, don't run the UI tests #2

Workflow file for this run

name: SwiftLint
on:
push:
branches: [main]
pull_request:
branches: [main]
concurrency:
group: swiftlint-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
name: Lint
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install SwiftLint
run: brew install swiftlint
- name: Run SwiftLint
working-directory: JSONParser
run: swiftlint lint --strict --reporter github-actions-logging