Skip to content

chore: bump version to 1.2.0 (#12) #44

chore: bump version to 1.2.0 (#12)

chore: bump version to 1.2.0 (#12) #44

Workflow file for this run

---
name: Quality Check
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
quality-check:
name: SwiftLint & SwiftFormat
runs-on: macos-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Install Dependencies
run: brew bundle
- name: Run SwiftLint
uses: cirruslabs/swiftlint-action@v1
with:
version: latest
- name: Run SwiftFormat
run: swiftformat --lint --config .swiftformat --reporter github-actions-log Sources