mirror of
https://github.com/softinio/Fishee.git
synced 2025-02-22 21:46:05 -08:00
28 lines
457 B
YAML
28 lines
457 B
YAML
name: Run Tests
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
matrix:
|
|
os: [macos-15, ubuntu-latest]
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Get swift version
|
|
run: swift --version
|
|
|
|
- name: Build
|
|
run: swift build -v
|
|
|
|
- name: Run tests
|
|
run: swift test -v --parallel
|