Skip to content

Commit 3fe66c5

Browse files
FranklinYurcaloras
authored andcommitted
Configure the first workflow for GitHub Actions
1 parent 7303c77 commit 3fe66c5

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/bats.yaml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Bats tests
2+
on: [push, pull_request]
3+
env:
4+
functional_test: 'true'
5+
6+
jobs:
7+
test:
8+
runs-on: ubuntu-20.04
9+
steps:
10+
- name: Install Bats
11+
run: |
12+
apt-get update
13+
apt-get install --assume-yes bats
14+
- name: Check out repository
15+
uses: actions/checkout@v2
16+
- name: Run tests
17+
run: bats test

0 commit comments

Comments
 (0)