You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
614 B
26 lines
614 B
# This workflow will build a Swift project
|
|
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-swift
|
|
|
|
name: Swift
|
|
|
|
on:
|
|
push:
|
|
branches: ["main"]
|
|
paths: ["codes/swift/**/*.swift"]
|
|
pull_request:
|
|
branches: ["main"]
|
|
paths: ["codes/swift/**/*.swift"]
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build:
|
|
name: Swift on ${{ matrix.os }}
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
matrix:
|
|
os: ["ubuntu-22.04", "macos-14"]
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Build
|
|
run: swift build --package-path codes/swift
|