Skip to content

Change Swift workflow to Ubuntu and simplify triggers (#31) #9

Change Swift workflow to Ubuntu and simplify triggers (#31)

Change Swift workflow to Ubuntu and simplify triggers (#31) #9

Workflow file for this run

# Simple test to obtain a green badge when merging to main branch
name: Swift Simple Check
permissions:
contents: read
on:
push:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: swift build -v
- name: Run tests
run: swift test -v