Skip to content

added storage size call #170

added storage size call

added storage size call #170

Workflow file for this run

name: Build & Tests
on: [push, pull_request]
jobs:
macos:
runs-on: macOS-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Select Xcode
run: sudo xcode-select -s /Applications/Xcode_11.4.app
- name: Build and Test SPM
run: swift test
- name: Update Cocoa Pods repo
run: pod repo update
- name: Build and Test CocoaPods
run: pod lib lint --allow-warnings --fail-fast
linux:
runs-on: ubuntu-latest
container:
image: swift:5.2
options: --cap-add=SYS_PTRACE --security-opt seccomp=unconfined --security-opt apparmor=unconfined
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Build and Test
run: swift test