This repository has been archived by the owner on Oct 29, 2024. It is now read-only.
Implement OpenID Connect #7
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: Vapor OAuth | |
on: | |
push: | |
branches: [ "main" ] | |
tags: | |
- '*' | |
pull_request: | |
branches: '*' | |
jobs: | |
ubuntu_test: | |
name: Ubuntu Build & Test | |
runs-on: ubuntu-22.04 | |
container: swift:5.9.2-jammy | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build | |
run: swift build -v | |
- name: Run tests | |
run: swift test | |
macos_test: | |
name: macOS Build & Test | |
env: | |
DEVELOPER_DIR: /Applications/Xcode_15.1.app/Contents/Developer | |
runs-on: macos-13 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build | |
run: swift build -v | |
- name: Run tests | |
run: swift test |