Skip to content

Commit

Permalink
Add ci GH action
Browse files Browse the repository at this point in the history
  • Loading branch information
ekalinin authored Mar 26, 2022
1 parent cd07e56 commit de4180a
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: CI

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Setup bats
uses: mig4/setup-bats@v1
with:
bats-version: 1.6.0

- name: Check out code
uses: actions/checkout@v2

- name: Run tests
run: make test

0 comments on commit de4180a

Please sign in to comment.