Skip to content

Update Tests.yml

Update Tests.yml #108

Workflow file for this run

name: Tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
SwiftLint: ## Adds swift-linting to GH actions
runs-on: ubuntu-latest
steps:

Check failure on line 11 in .github/workflows/Tests.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/Tests.yml

Invalid workflow file

You have an error in your yaml syntax on line 11
- uses: actions/checkout@v3
- name: GitHub Action for SwiftLint
uses: norio-nomura/action-swiftlint@3.2.1
with:
args: --config .swiftlint.yml
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
## - name: Build
## run: swift clean build -v
## - name: Run tests
## run: swift test -v