Skip to content

refactor(run-profile): log corrupted store decode failures (#105) #90

refactor(run-profile): log corrupted store decode failures (#105)

refactor(run-profile): log corrupted store decode failures (#105) #90

Workflow file for this run

name: CI
on:
push:
branches: [ main, develop ]
pull_request:
branches: [ main ]
jobs:
build-and-test:
runs-on: macos-14
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Swift
uses: swift-actions/setup-swift@v1
with:
swift-version: '5.9'
- name: Cache Swift packages
uses: actions/cache@v3
with:
path: .build
key: ${{ runner.os }}-spm-${{ hashFiles('**/Package.resolved') }}
restore-keys: |
${{ runner.os }}-spm-
- name: Build
run: swift build
- name: Run tests
run: swift test
- name: Build release
run: swift build -c release
- name: Upload build artifacts
uses: actions/upload-artifact@v4
with:
name: Zero-app
path: .build/release/Zero
retention-days: 7