Skip to content

Remove mutating from processors #20

Remove mutating from processors

Remove mutating from processors #20

Workflow file for this run

name: Build
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: ['ubuntu-latest', 'macos-latest']
swift: ['5.7']
steps:
- uses: actions/checkout@v3
- uses: swift-actions/setup-swift@v2
with:
swift-version: '${{ matrix.swift }}'
- name: Build
run: swift build
- name: Test
run: swift test