Skip to content

HTTPClient needs to be shutdown after use to avoid memory leak #7

HTTPClient needs to be shutdown after use to avoid memory leak

HTTPClient needs to be shutdown after use to avoid memory leak #7

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
jobs:
ci:
name: Build & Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v3
with:
path: .build
key: ${{ runner.os }}-spm-${{ hashFiles('**/Package.resolved') }}
restore-keys: |
${{ runner.os }}-spm-
- name: Build
run: swift build --build-tests
- name: Run Tests
run: swift test