Skip to content

Configure Dependabot + Workflow Tweaks (#11) #18

Configure Dependabot + Workflow Tweaks (#11)

Configure Dependabot + Workflow Tweaks (#11) #18

Workflow file for this run

name: Tests
on:
workflow_call:
workflow_dispatch:
push:
branches: [ main ]
paths:
- '.github/workflows/tests.yml'
- '**.swift'
- 'Package.resolved'
pull_request:
types:
- opened
- reopened
- synchronize
- ready_for_review
paths:
- '.github/workflows/tests.yml'
- '**.swift'
- 'Package.resolved'
jobs:
unit_tests:
if: github.event.pull_request.draft == false
name: Run Tests
runs-on: macos-13
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build
run: swift build
- name: Run tests
run: swift test