Skip to content

Update SwiftLint 0.53.0 #20

Update SwiftLint 0.53.0

Update SwiftLint 0.53.0 #20

Workflow file for this run

# Github Actions Documentation
# https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-swift
name: Swift
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: Install SwiftLint
run: brew install swiftlint
- name: Run SwiftLint
run: swiftlint
- name: Build
run: swift build
- name: Run tests
run: swift test