Skip to content

Commit

Permalink
ci: add test workflow
Browse files Browse the repository at this point in the history
Fix #40
  • Loading branch information
virtualroot committed Sep 18, 2024
1 parent b44c09e commit 1018147
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Test

on:
push:
branches:
- main
pull_request:

jobs:
test:
name: bats
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Install bats
run: npm install -g [email protected]

- name: Run tests
run: npm exec -- bats test/*.bats
File renamed without changes.

0 comments on commit 1018147

Please sign in to comment.