Document how to print debug output without breaking bats testing (#330) #228
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
# Run all tests for commits to master | |
name: AWK / main | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
ci: | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 | |
- name: Install software | |
run: sudo apt update && sudo apt -y install gawk bats | |
# bats v1.10.0 -- https://launchpad.net/ubuntu/noble/+source/bats | |
# gawk v5.2.1 -- https://launchpad.net/ubuntu/noble/+source/gawk | |
- name: Run tests for all exercises | |
run: bash bin/ci |