Skip to content

Update permissions in swift_windows.yml #58

Update permissions in swift_windows.yml

Update permissions in swift_windows.yml #58

Workflow file for this run

# 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: Build Swift Package on macOS
on:
push:
branches: [ "main" ]
permissions:
contents: read
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- uses: swift-actions/setup-swift@v3
with:
swift-version: "6.2"
- name: Get swift version
run: swift --version
- name: Build
run: swift build -v
# - name: Run tests
# run: swift test -v