From bc2d83c56fb0d8cbb07505ceba36bce658e5666f Mon Sep 17 00:00:00 2001 From: Adam Saponara Date: Fri, 31 Dec 2021 01:43:30 -0500 Subject: [PATCH] use github actions for ci --- .github/workflows/termbox_test.yml | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .github/workflows/termbox_test.yml diff --git a/.github/workflows/termbox_test.yml b/.github/workflows/termbox_test.yml new file mode 100644 index 0000000..a92e098 --- /dev/null +++ b/.github/workflows/termbox_test.yml @@ -0,0 +1,8 @@ +name: termbox_test +on: [push, pull_request] +jobs: + termbox_test_job: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - run: make test -- 2.39.5