Skip to content

0.5.0

0.5.0 #380

Workflow file for this run

name: Swift
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
test-macos:
if: ${{ false }} # disable until macOS 12 (with concurrency) runners are available.
runs-on: macos-12
env:
DEVELOPER_DIR: /Applications/Xcode_13.2.app/Contents/Developer
steps:
- uses: actions/checkout@v2
- name: Build
run: swift build -v
- name: Run tests
run: swift test -v
test-linux:
runs-on: ubuntu-20.04
strategy:
matrix:
swift: [5.5]
container: swift:${{ matrix.swift }}
steps:
- uses: actions/checkout@v2
- name: Install sqlite
run: apt-get -q update && apt-get install -y libsqlite3-dev
- name: Build
run: swift build -v --enable-test-discovery
- name: Run tests
run: swift test -v --enable-test-discovery