Skip to content

Bump github.com/onevcat/rainbow from 4.0.1 to 4.1.0 #2

Bump github.com/onevcat/rainbow from 4.0.1 to 4.1.0

Bump github.com/onevcat/rainbow from 4.0.1 to 4.1.0 #2

Workflow file for this run

name: Checks
on: [workflow_dispatch, pull_request]
jobs:
swiftformat:
name: SwiftFormat
runs-on: macos-13
steps:
- uses: actions/checkout@v4
- run: swiftformat . --lint --quiet --reporter github-actions-log
swiftlint:
name: SwiftLint
runs-on: macos-13
steps:
- uses: actions/checkout@v4
- name: Install SwiftLint
run: brew install swiftlint
- run: swiftlint --strict --quiet --reporter github-actions-logging
cli:
name: Build Binary
runs-on: macos-13
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: .build
key: ${{ runner.os }}-spm-${{ hashFiles('Package.resolved') }}
restore-keys: ${{ runner.os }}-spm-
- name: Select Xcode 15.1
run: sudo xcode-select -s '/Applications/Xcode_15.1.app'
- name: Build
run: swift build -c release