Skip to content

add static "make" method #15

add static "make" method

add static "make" method #15

Workflow file for this run

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
DEVELOPER_DIR: /Applications/Xcode_15.3.app/Contents/Developer
name: Test
jobs:
build:
name: Test
runs-on: macos-14
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: actions/cache@v4
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