Skip to content

Expose RelayResponse.Message and RelayResponse.MessagePrefix as publi… #1

Expose RelayResponse.Message and RelayResponse.MessagePrefix as publi…

Expose RelayResponse.Message and RelayResponse.MessagePrefix as publi… #1

Workflow file for this run

# This workflow will build a Swift project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-swift
name: Build & Test (macos & linux)
on:
push:
paths-ignore:
- 'README.md'
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build-macos:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: swift build -v
- name: Run tests
run: swift test -v
build-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: swift-actions/setup-swift@v1
- name: Build
run: swift build -v
- name: Run tests
run: swift test -v