Skip to content

Merge pull request #32 from pacu/release/0.1.0-beta #50

Merge pull request #32 from pacu/release/0.1.0-beta

Merge pull request #32 from pacu/release/0.1.0-beta #50

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:
# push:
# branches: [ "main" ]
# pull_request:
# branches: [ "main" ]
# jobs:
# build:
# name: Swift ${{ matrix.swift }} on ${{ matrix.os }}
# strategy:
# matrix:
# os: [macos-latest]
# swift: ["5.9.0"]
# runs-on: ${{ matrix.os }}
# steps:
# - uses: swift-actions/setup-swift@f51889efb55dccf13be0ee727e3d6c89a096fb4c
# with:
# swift-version: ${{ matrix.swift }}
# - name: Get swift version
# run: swift --version
# - uses: actions/checkout@v4
# - name: Swift clean
# run: swift package clean
# - name: Run tests
# run: swift test