Support for RFC 8628 (Device Authorization Grant) and RFC 7009 (Token… #13
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:6.0 | |
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_16.0.app/Contents/Developer | |
runs-on: macos-14 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build | |
run: swift build -v | |
- name: Run tests | |
run: swift test |