Skip to content

Merge pull request #25 from sergkh/duplicates-functions #108

Merge pull request #25 from sergkh/duplicates-functions

Merge pull request #25 from sergkh/duplicates-functions #108

Workflow file for this run

name: Build and test
on: [push]
jobs:
build:
name: Swift ${{ matrix.swift }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
swift: ["6.1"]
steps:
- uses: actions/checkout@v4
- uses: swift-actions/setup-swift@v2
with:
swift-version: ${{ matrix.swift }}
- name: Build
run: swift build
- name: Run tests
run: swift test