Skip to content

Replace swift-sprinter with swift-serverless #9

Replace swift-sprinter with swift-serverless

Replace swift-sprinter with swift-serverless #9

Workflow file for this run

name: 'Run Swift Tests'
on:
workflow_dispatch:
push:
branches:
- main
pull_request:
env:
AWS_ENABLE_LOGGING : "true"
AWS_LOG_LEVEL: "trace"
jobs:
swift-tests:
name: 'Swift Tests'
runs-on: macos-13
defaults:
run:
shell: bash
steps:
# Checkout the repository to the GitHub Actions runner
- name: Checkout
uses: actions/checkout@v3
- name: Test
run: |
make test
- name: Coverage
run: |
make coverage
- name: Upload Code Coverage
uses: codecov/codecov-action@v3
with:
files: ${{ github.workspace }}/lcov.info