Allow function bracket to be on next line, fix #56 (#65) #68
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, pull_request] | |
jobs: | |
test: | |
name: Run tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone repository | |
uses: actions/checkout@v1 | |
- name: Clone submodules | |
run: git submodule update --recursive --init | |
- name: Run tests | |
run: make test |