8000 Merge branch 'master' into fixture_validation · uber/mockolo@2bb97d6 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Compile fixture code with macro #273

Compile fixture code with macro

Compile fixture code with macro #273

Workflow file for this run

name: Build Actions
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
run:
name: Build and test on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, ubuntu-latest]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build and Test
run: swift test
env:
CI: 1
0