Update upload of files to using files.falu.io host #2
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: | |
push: | |
tags: | |
- '*' | |
paths-ignore: # do not trigger for changes in docs | |
- docs/** | |
- README.md | |
- CHANGELOG.md | |
- LICENSE.md | |
pull_request: | |
branches: [ main ] | |
paths-ignore: # do not trigger for changes in docs | |
- docs/** | |
- README.md | |
- CHANGELOG.md | |
- LICENSE.md | |
jobs: | |
Build: | |
runs-on: macos-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Resolve dependencies | |
run: swift package resolve | |
- name: Build | |
run: swift build -v | |
- name: Run tests | |
run: swift test -v |