Skip to content

Fix Localizable.xcstrings location #70

Fix Localizable.xcstrings location

Fix Localizable.xcstrings location #70

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
tests:
name: Build and Test
strategy:
fail-fast: false
matrix:
swift: ["6.0"]
os: [macos-13, macos-14, macos-15]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: SwiftyLab/setup-swift@latest
with:
swift-version: ${{ matrix.swift }}
- name: Build
run: swift build -v
- name: Test
run: swift test -v
lint:
name: Run Swiftlint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: norio-nomura/action-swiftlint@3.2.1