LoginSignup
4
1

More than 5 years have passed since last update.

CircleCI Linux planでSwiftLintを動かす

Posted at

Makeをするのです!!!!

mac plan高いのでubuntuでやった
unit testはまだ実装してないので、しばらくは swiftlint のみで十分かなぁ

version: 2
jobs:
  build:
    docker:
      - image: norionomura/docker-swift-updater
    working_directory: ~/repo
    steps:
      - checkout
      - run:
          name: swift lint
          command: |
            cd ~
            git clone https://github.com/realm/SwiftLint
            cd SwiftLint
            make
            cd ~/repo
            ~/SwiftLint/.build/x86_64-unknown-linux/release/swiftlint --config ./.swiftlint/swiftlint.yml
4
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
1