From 9650b6b9666e712217c021815c2f7450ef215738 Mon Sep 17 00:00:00 2001 From: Maxim Lebedev Date: Fri, 14 Apr 2023 18:01:00 +0600 Subject: [PATCH] :construction_worker: Created Gitea Action configuration --- .gitea/workflows/default.yaml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .gitea/workflows/default.yaml diff --git a/.gitea/workflows/default.yaml b/.gitea/workflows/default.yaml new file mode 100644 index 0000000..6087c2d --- /dev/null +++ b/.gitea/workflows/default.yaml @@ -0,0 +1,19 @@ +--- +name: "Go" +on: "push" + +jobs: + build: + runs-on: "ubuntu-latest" + steps: + - uses: "https://gitea.com/actions/checkout@v3" + - name: "Setup Go" + uses: "https://gitea.com/actions/setup-go@v3" + with: + cache-dependency-path: "go.sum" + cache: true + go-version-file: "go.mod" + - name: "Test" + run: "make check" + - name: "Build" + run: "make"