Skip to content

Update README.md (#13) #21

Update README.md (#13)

Update README.md (#13) #21

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: Build Project
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
tests:
name: Build and Test
strategy:
matrix:
os: [macos-14]
xcode: ["15"]
swift: ["5.9"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: fwal/setup-swift@v1
with:
swift-version: ${{ matrix.swift }}
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: ${{ matrix.xcode }}
- name: Build
run: swift build -v
- name: Run tests
run: swift test -v