From 962a1c557d566a717e8a47f4b9748be12a6f0d1d Mon Sep 17 00:00:00 2001 From: Alex Kotov Date: Tue, 14 Dec 2021 03:24:25 +0500 Subject: [PATCH] Use GitHub Actions --- .github/workflows/test.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..f05e3a9 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,21 @@ +name: Test + +on: + push: + branches: [$default-branch] + pull_request: + branches: [$default-branch] + +jobs: + test: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: autogen + run: ./autogen.sh + - name: configure + run: ./configure + - name: make + run: make + - name: check + run: make check