Skip to content

Sync main with develop #2

Sync main with develop

Sync main with develop #2

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build-and-test:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: Select Xcode
run: sudo xcode-select -s /Applications/Xcode.app
- name: Install SwiftLint
run: brew install swiftlint
- name: Install Dependencies
run: make install-tools
- name: SwiftLint
run: make lint
- name: Build
run: make build
- name: Run tests
run: make test
- name: Upload test results
uses: actions/upload-artifact@v3
if: failure()
with:
name: test-results
path: .build/debug/releaseTest.xctest/Contents/
retention-days: 7