Skip to content

[github] Lower timeout for github actions #1243

[github] Lower timeout for github actions

[github] Lower timeout for github actions #1243

Workflow file for this run

name: build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
timeout-minutes: 30
strategy:
matrix:
os: [macos-latest, ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/setup-node@v4
with:
node-version: 25-nightly
- uses: swift-actions/setup-swift@v2
with:
swift-version: "6.0.3"
- name: Swift Version
run: swift --version
- uses: actions/checkout@v2
- name: Build
run: swift build -v
- name: Run tests
run: swift test -v