Skip to content

avoiding duplicate path elements on push and append (fix #40) #85

avoiding duplicate path elements on push and append (fix #40)

avoiding duplicate path elements on push and append (fix #40) #85

Workflow file for this run

name: CI
on:
push:
branches:
- master
paths-ignore:
- "docs/**"
- "**.md"
pull_request:
branches:
- master
paths-ignore:
- "docs/**"
- "**.md"
jobs:
main:
name: Tests
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install Zsh
if: runner.os == 'Linux'
run: |
sudo apt-get update
sudo apt-get install zsh
- name: Zsh Version
run: zsh --version
- name: Initialize Submodules
run: make init
- name: Run Tests
run: make test