don't count directories when counting children of opened dir #471
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 | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
ubuntu-build-check: | |
name: Ubuntu Build Check | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Install build essentials | |
run: sudo apt-get update && sudo apt-get install -y build-essential | |
- name: Install dependencies | |
run: sudo apt install -y libtag1-dev libfaad-dev libogg-dev libfftw3-dev libopus-dev libopusfile-dev libvorbis-dev libchafa-dev libavformat-dev libstb-dev libnotify-dev | |
- name: Build code | |
run: make |