chore(deps): update dependency apple/swift-nio to from: "2.76.1" #106
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: Swift | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build-ubuntu: | |
runs-on: ubuntu-18.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install Swift | |
run: | | |
SWIFT_URL=https://swift.org/builds/swift-5.1.1-release/ubuntu1404/swift-5.1.1-RELEASE/swift-5.1.1-RELEASE-ubuntu14.04.tar.gz | |
curl -fSsL $SWIFT_URL -o swift.tar.gz | |
sudo tar -xzf swift.tar.gz --strip-components=2 --directory=/usr/local | |
which swift | |
- name: Build | |
run: | | |
swift package -v resolve | |
make all | |
build-macos: | |
runs-on: macOS-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Build | |
run: | | |
swift package -v resolve | |
make all |