Skip to content

feat(storage): add info, exists, custom metadata, and methods for uploading file URL #85

feat(storage): add info, exists, custom metadata, and methods for uploading file URL

feat(storage): add info, exists, custom metadata, and methods for uploading file URL #85

Workflow file for this run

name: Storage
on:
pull_request:
paths:
- "Sources/Storage/**"
- "Tests/StorageTests/**"
- ".github/workflows/storage.yml"
push:
branches:
- main
paths:
- "Sources/Storage/**"
- "Tests/StorageTests/**"
- ".github/workflows/storage.yml"
concurrency:
group: storage-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
name: Test Storage
strategy:
fail-fast: false
matrix:
xcode: ["15.4", "16"]
config: ["debug", "release"]
runs-on: macos-14
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Select Xcode ${{ matrix.xcode }}
run: sudo xcode-select -s /Applications/Xcode_${{ matrix.xcode }}.app
- name: Run tests
run: CONFIG="${{ matrix.config }}" make test-storage
test-linux:
name: Test Storage (Linux)
strategy:
fail-fast: false
matrix:
swift-version: ["5.10"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-deptch: 0
- uses: swift-actions/setup-swift@v2
with:
swift-version: ${{ matrix.swift-version }}
- run: make dot-env
- name: Run tests
run: swift test --filter StorageTests.