Skip to content

ci: upgrade actions/checkout to v4 and add PR triggers (#29) #77

ci: upgrade actions/checkout to v4 and add PR triggers (#29)

ci: upgrade actions/checkout to v4 and add PR triggers (#29) #77

Workflow file for this run

name: Ubuntu
on:
push:
branches: ["**"]
pull_request:
branches: ["main"]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Set up Swift
uses: swift-actions/setup-swift@v2
with:
swift-version: '6.1.0'
- uses: actions/checkout@v4
- name: Build for release
run: swift build -v -c release
- name: Test
run: swift test -v