1. ngs/swiftlint@0.0.1

ngs/swiftlint@0.0.1

Sections
Swiftlint
Created: November 15, 2018Version Published: November 15, 2018Releases: 1
Org Usage:
< 25

Orb Quick Start Guide

Use CircleCI version 2.1 at the top of your .circleci/config.yml file.

1 version: 2.1

Add the orbs stanza below your version, invoking the orb:

1 2 orbs: swiftlint: ngs/swiftlint@0.0.1

Use swiftlint elements in your existing workflows and jobs.

Opt-in to use of uncertified orbs on your organization’s Security settings page.

Jobs

run

Runs swiftlint

Show job Source

Executors

Orb Source

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 # This code is licensed from CircleCI to the user under the MIT license. # See here for details: https://circleci.com/developer/orbs/licensing version: 2.1 description: Swiftlint jobs: run: description: Runs swiftlint executor: swiftlint steps: - checkout - run: swiftlint lint --reporter junit | tee result.xml - store_artifacts: path: result.xml - store_test_results: path: result.xml executors: swiftlint: docker: - image: dantoml/swiftlint:latest
Developer Updates
Get tips to optimize your builds
Or join our research panel and give feedback
By submitting this form, you are agreeing to ourTerms of UseandPrivacy Policy.