Skip to content

Merge pull request #3 from SwiftPackageIndex/github-ci #8

Merge pull request #3 from SwiftPackageIndex/github-ci

Merge pull request #3 from SwiftPackageIndex/github-ci #8

Workflow file for this run

name: Continuous Integration
on:
workflow_dispatch:
push:
jobs:
build-release:
strategy:
matrix:
# https://github.com/actions/virtual-environments
os: [macos-12, ubuntu-20.04]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: fwal/setup-swift@v2
- name: Echo Swift version
run: swift --version
- name: Check a Release build
run: swift build --disable-automatic-resolution -c release
run-tests:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- uses: fwal/setup-swift@v2
- name: Echo Swift version
run: swift --version
- name: Run tests
run: swift test