Skip to content

CIでテストする #1

CIでテストする

CIでテストする #1

Workflow file for this run

name: test
on:
push:
branches:
- main
pull_request:
paths:
- .github/workflows/test.yml
- bin/test
- Sources
- Tests
- Package.resolved
- Package.swift
jobs:
test-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: vapor/[email protected]
with:
toolchain: 5.10
- run: swift package resolve
- run: swift build
- run: swift build --build-tests
- run: swift test