Avoid reading the whole file into memory when updating ID3 tag of a file #405
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Linux | |
on: | |
push: | |
branches: | |
- '*' | |
pull_request: | |
branches: | |
- main | |
schedule: | |
- cron: '0 16 15 * *' | |
jobs: | |
build: | |
name: Build Linux | |
runs-on: ubuntu-latest | |
container: | |
image: swift:latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Build Linux framework | |
run: | | |
swift build | |
- name: Build Linux Demo | |
run: | | |
cd Demo/Demo\ Ubuntu | |
swift build |