Skip to content

Install Mint in GitHub Actions #8

Install Mint in GitHub Actions

Install Mint in GitHub Actions #8

Workflow file for this run

name: Swift
on: [push, pull_request]
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: Install Mint
run: brew install mint
- name: Lint
run: mint run swiftlint --reporter github-actions-logging --strict
- name: Test
run: swift test -v
- name: Debug Build
run: swift build -v -c debug
- name: Release Build
run: swift build -v -c release