Skip to content

add github CI check for swift package #2

add github CI check for swift package

add github CI check for swift package #2

Workflow file for this run

name: Swift
on:
push:
branches: [ "main", "develop" ]
pull_request:
branches: [ "main", "develop" ]
jobs:
build:
runs-on: macos-latest
steps:
- uses: swift-actions/setup-swift@v1
- uses: actions/checkout@v4
- name: Build
run: cd ios/MMKV; swift build
- name: Run tests
run: cd ios/MMKV; swift test