MakeColors/.github/workflows/test.yml
Workflow config file is invalid. Please check your config file: yaml: unmarshal errors: line 21: cannot unmarshal !!seq into string
2020-12-30 14:22:56 +01:00

27 lines
604 B
YAML

name: Test
on:
pull_request:
paths:
- '.github/workflows/test.yml'
- '**/*.swift'
jobs:
SwiftLint:
runs-on: macos-latest
steps:
- uses: actions/checkout@v1
- name: Cache Swift packages
uses: actions/cache@v2
env:
cache-name: cache-swift-packages
with:
path:
- .build/checkouts
- .build/repositories
- .build/workspace-state.json
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('Package.resolved') }}
- name: Run tests
run: swift test