Attempt to fix loading events #29
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
# https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-swift | ||
name: Swift | ||
on: [push] | ||
jobs: | ||
build: | ||
runs-on: macos-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: fwal/setup-swift@v1 # GitHub Action that setup a Swift environment (https://github.com/fwal/setup-swift) | ||
- name: Build | ||
run: swift build | ||
# - name: Run tests | ||
# run: swift test | ||
- name: Setup Xcode version | ||
uses: maxim-lobanov/setup-xcode@v1.6.0 | ||