Skip to content

0.3.0 release

0.3.0 release #25

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
name: Test
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- uses: swift-actions/setup-swift@v2
with:
swift-version: "6.1.0"
- name: Cache Swift Package Manager
uses: actions/cache@v3
with:
path: |
.build
~/.cache/org.swift.swiftpm
key: spm-${{ hashFiles('**/Package.resolved') }}
restore-keys: spm-
- name: Build (production)
run: swift build --configuration release
- name: Test
run: swift test --verbose
env:
IPInfoKitAccessToken: ${{ secrets.IPINFO_TOKEN }}