smaller indentation on subfolders #21
Workflow file for this run
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 Check macOS | |
on: | |
pull_request: | |
push: | |
paths: | |
- 'Makefile' | |
workflow_dispatch: | |
jobs: | |
macos-build-check: | |
name: macOS Build Check | |
runs-on: macos-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Check system architecture | |
run: uname -m | |
- name: Install Homebrew | |
run: | | |
if ! command -v brew &> /dev/null; then | |
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" | |
fi | |
- name: Update Homebrew and install dependencies | |
run: | | |
brew update | |
brew install faad2 taglib chafa fftw opus opusfile libogg libvorbis make | |
- name: Build code | |
run: make |