Skip to content

Avoid reading the whole file into memory when updating ID3 tag of a file #414

Avoid reading the whole file into memory when updating ID3 tag of a file

Avoid reading the whole file into memory when updating ID3 tag of a file #414

Workflow file for this run

name: Build macOS
on:
push:
branches:
- '*'
pull_request:
branches:
- main
schedule:
- cron: '0 16 15 * *'
jobs:
build:
name: Build macOS
runs-on: macos-15
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Build macOS framework
run: |
set -o pipefail && xcodebuild -project ID3TagEditor.xcodeproj -scheme "ID3TagEditor macOS Tests" clean test CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO -destination "platform=macOS,arch=x86_64" -skipPackagePluginValidation | xcpretty
- name: Build macOS Demo
run: |
set -o pipefail && xcodebuild -project Demo/Demo.xcodeproj -scheme "Demo macOS" clean build CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO -destination "platform=macOS,arch=x86_64" -skipPackagePluginValidation | xcpretty
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1