Skip to content

Updated README.md

Updated README.md #24

Workflow file for this run

name: "CI"
on: [push, pull_request]
jobs:
build:
name: build
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
with:
submodules: 'true'
- run: echo "The ${{ github.repository }} repository has been cloned to the runner."
- run: echo "The workflow is now ready to test your code on the runner."
- name: List files in the repository
run: |
ls ${{ github.workspace }}/test/
ls ${{ github.workspace }}/test/test_helper
- run: echo "This job's status is ${{ job.status }}."
- name: Test
run: test/bats/bin/bats test/test.bats