feat(subject): no longer prevent commit subjects from starting with a… #217
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
name: 'Automated tests' | |
on: | |
[pull_request, push] | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install bats | |
run: | | |
git clone https://github.com/bats-core/bats-core.git $HOME/bats-core | |
sudo $HOME/bats-core/install.sh /usr/local | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Unit tests on Validator | |
run: bats ./validator.bats |