fireblade-ecs/.github/workflows/ci.yml
Workflow config file is invalid. Please check your config file: yaml: unmarshal errors: line 16: mapping key "run" already defined at line 15 line 25: mapping key "run" already defined at line 24

26 lines
594 B
YAML

name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build-test-macOS-latest:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: Test & Build Release
run: swift build -c release
run: swift test -c release --skip-build --skip-update --parallel
build-test-ubuntu-latest:
build-test-macOS-latest:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: Test & Build Release
run: swift build -c release
run: swift test -c release --skip-build --skip-update --parallel