Skip to content

Commit

Permalink
add github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
docwhat committed May 23, 2024
1 parent 005d312 commit bdc7b99
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# GitHub Action to run all my CI tasks.
name: Continuous Integration

on:
pull_request:
branches: [main]
push: {}
workflow_dispatch: {}

permissions: read-all

jobs:
my_test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- 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

0 comments on commit bdc7b99

Please sign in to comment.