Skip to content

It's All Text!

It's All Text! #10

Workflow file for this run

# GitHub Action to run all my CI tasks.
name: Continuous Integration
on:
pull_request:
branches: [main]
push: {}
workflow_dispatch: {}
permissions: read-all
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Bats and bats libs
uses: bats-core/[email protected]
with:
detik-install: false
support-install: false
assert-install: false
file-install: false
- name: Bootstrap Check
run: ./script/bootstrap
- name: Lint Check
run: ./script/lint
- name: Tests
run: ./script/test