Skip to content

CIでテストする #3

CIでテストする

CIでテストする #3

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