Skip to content

Merge pull request #25 from niscy-eudiw/SecureArea #128

Merge pull request #25 from niscy-eudiw/SecureArea

Merge pull request #25 from niscy-eudiw/SecureArea #128

Workflow file for this run

# This workflow will build a Swift project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-swift
name: Swift
on:
pull_request:
types: [opened, reopened]
push:
branches: ['main']
tags: [ v* ]
jobs:
build:
runs-on: macos-latest
steps:
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: '16.0'
- uses: actions/checkout@v4
- name: Build
run: swift build
- name: Run tests
run: swift test