Fix skip_dir logic when reverse traversing folder structure #1195
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: Test Build | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
build: | |
#runs-on: ubuntu-latest | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Check out code from GitHub | |
uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
fetch-depth: 0 | |
- name: Update Image | |
run: | | |
sudo apt-get clean | |
sudo apt-get update -y | |
- name: Install build-essential | |
run: sudo apt install -y build-essential | |
- name: Install build-dependencies | |
run: sudo apt install -y libcurl4-openssl-dev libsqlite3-dev pkg-config git curl ldc | |
- name: Configure | |
run: ./configure | |
- name: Compile | |
run: make clean; make; | |
- name: Install | |
run: sudo make install | |
- name: Run | |
run: onedrive --version |