Add :drop-edge
and :drop-node
methods for digraphs
#56
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 | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: install backing for building janet | |
run: sudo apt install build-essential | |
- name: build janet, install junk-drawer | |
run: | | |
git clone --depth 1 --branch master https://github.com/janet-lang/janet.git /tmp/janet | |
cd /tmp/janet | |
sudo make all test install | |
sudo make install-jpm-git | |
- name: install junk-drawer | |
run: sudo jpm install https://github.com/AlecTroemel/junk-drawer.git | |
- name: run tests | |
run: sudo jpm test |