Add a little helper that creates a github repo based on current dir a… #182
This file contains hidden or 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
| on: | |
| push | |
| name: make test | |
| jobs: | |
| test: | |
| name: make test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@master | |
| - name: make test | |
| run: make test | |
| shell: bash |