Skip to content

Merge branch 'main' of github.com:shndrs/HandyStorage #19

Merge branch 'main' of github.com:shndrs/HandyStorage

Merge branch 'main' of github.com:shndrs/HandyStorage #19

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: Swift
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Swift
uses: swift-actions/setup-swift@v1
with:
swift-version: '5.7'
- name: Install dependencies
run: swift package resolve
- name: Clean the project
run: swift package clean
- name: Build project (verbose)
run: swift build -v