Update versions in README (#203) #340
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: Testing | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
pull_request: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.sha }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
name: Run Bats tests | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Check out code | |
uses: actions/[email protected] | |
- name: Install Pandoc | |
uses: pandoc/actions/[email protected] | |
with: | |
version: 3.5 | |
- name: Install Bats | |
id: setup-bats | |
uses: bats-core/[email protected] | |
with: | |
bats-version: v1.11.0 | |
support-path: ${{ github.workspace }}/tests/bats-support | |
assert-path: ${{ github.workspace }}/tests/bats-assert | |
detik-path: ${{ github.workspace }}/tests/bats-detik | |
file-path: ${{ github.workspace }}/tests/bats-file | |
- name: Install other dependencies | |
run: | | |
echo "::group::Install graphviz" | |
sudo apt-get install graphviz | |
echo "::endgroup::" | |
echo "::group::Install inotify-tools" | |
sudo apt-get install inotify-tools | |
echo "::endgroup::" | |
- name: Run tests | |
env: | |
BATS_LIB_PATH: ${{ steps.setup-bats.outputs.lib-path }} | |
run: bats --tap test |