1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
name: sw on: [push, pull_request] jobs: build: runs-on: ${{ matrix.os }} strategy: fail-fast: false matrix: os: [windows-latest, ubuntu-latest, macOS-latest] steps: - uses: actions/checkout@v1 - uses: egorpugin/sw-action@master - name: build run: ./sw build - name: test run: ./sw test