From 37fafd09e7eb7057be43ec460578e10bc570a8f3 Mon Sep 17 00:00:00 2001 From: Philipp Heckel Date: Tue, 7 Dec 2021 11:50:48 -0500 Subject: [PATCH] GitHub workflow --- .github/workflows/test.yaml | 18 ++++++++++++++++++ .gitignore | 2 +- 2 files changed, 19 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/test.yaml diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml new file mode 100644 index 0000000..f9e90f3 --- /dev/null +++ b/.github/workflows/test.yaml @@ -0,0 +1,18 @@ +name: test +on: [push, pull_request] +jobs: + test: + runs-on: ubuntu-latest + steps: + - name: Install Go + uses: actions/setup-go@v2 + with: + go-version: '1.16.x' + - name: Checkout code + uses: actions/checkout@v2 + - name: Install test dependencies + run: sudo apt-get install netcat-openbsd + - name: Run tests, formatting, vetting and linting + run: make check + - name: Run and upload coverage to codecov.io + run: make coverage coverage-upload \ No newline at end of file diff --git a/.gitignore b/.gitignore index 616f246..93a1dee 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,5 @@ dist/ +build/ .idea/ -site/ server/docs/ *.iml