Fix the query to count number of workflows #180
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 | |
on: [pull_request] | |
jobs: | |
setup: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup BATS | |
uses: mig4/setup-bats@v1 | |
with: | |
bats-version: 1.2.1 | |
- uses: actions/checkout@v2 | |
- name: Test | |
run: | | |
make test | |
#- name: Complain about changelog | |
#run: | | |
#x=$(git diff master -- CHANGELOG.md | wc -l) | |
#if (( x == 0 )); then echo "Please update the CHANGELOG.md"; exit 1; fi |