Skip to content
This repository has been archived by the owner on Oct 29, 2024. It is now read-only.

Merge pull request #10 from vamsii777/patch #18

Merge pull request #10 from vamsii777/patch

Merge pull request #10 from vamsii777/patch #18

Workflow file for this run

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