Bump github.com/vapor/vapor from 4.52.2 to 4.90.0 in /Packages/CatbirdApp #69
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: Test | |
on: | |
push: | |
branches: | |
- main | |
tags-ignore: | |
- '**' | |
pull_request: | |
branches: | |
- '**' | |
jobs: | |
test-macos: | |
name: Test on macOS | |
runs-on: macOS-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Build and test | |
run: make test | |
test-linux: | |
name: Test on Linux | |
runs-on: ubuntu-20.04 | |
container: | |
image: swift:5.5.1-focal | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Test catbird app | |
run: swift test --package-path Packages/CatbirdApp --disable-automatic-resolution | |
test-linux-build: | |
name: Build on Linux | |
runs-on: ubuntu-20.04 | |
container: | |
image: swift:5.5.1-focal | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Build catbird app | |
id: build | |
run: .github/scripts/linux-build.sh | |
shell: bash | |
- name: Upload binary | |
uses: actions/upload-artifact@v2 | |
with: | |
name: catbird-linux | |
path: catbird-linux |