Skip to content

enable integration tests in the pipeline #23

enable integration tests in the pipeline

enable integration tests in the pipeline #23

Workflow file for this run

name: Swift CI
on: [push, pull_request]
jobs:
build:
name: Swift ${{ matrix.swift }} on ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
swift: ["5.8", "5.9"]
runs-on: ${{ matrix.os }}
steps:
- uses: swift-actions/setup-swift@v1
with:
swift-version: ${{ matrix.swift }}
- uses: actions/checkout@v4
- name: Run Unit Tests
run: make unit_test
- name: Run Integration Tests
run: make integration_test
- name: Upload Test logs
uses: actions/upload-artifact@v3
with:
name: test log
path: |
unit_test.log
integration_test.log
retention-days: 7