Bump braces from 3.0.2 to 3.0.3 #143
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 ] | |
jobs: | |
run-tests: | |
name: Run automated tests | |
runs-on: ubuntu-latest | |
steps: | |
- | |
name: Checkout | |
uses: actions/checkout@v2 | |
- | |
name: Run all tests | |
run: bash ./tests/run.sh | |
build-docker: | |
name: Ensure ability to build docker | |
runs-on: ubuntu-latest | |
steps: | |
- | |
name: Checkout | |
uses: actions/checkout@v2 | |
- | |
name: Build docker | |
run: docker build . --tag bump-everywhere |