Skip to content

Commit

Permalink
ci: add github actions integration (#3)
Browse files Browse the repository at this point in the history
Signed-off-by: amannocci <[email protected]>
  • Loading branch information
amannocci authored Jul 16, 2023
1 parent 5fbd5a5 commit 75d1326
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
---

name: CI

on:
pull_request:
push:
branches:
- main

permissions:
contents: read

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Task
uses: arduino/setup-task@v1
- name: Install dependencies
run: sudo apt install -y bats
- name: Run tests
run: task test

0 comments on commit 75d1326

Please sign in to comment.