From a5e796d017e0c02141a3d8c417a2e76bff450156 Mon Sep 17 00:00:00 2001 From: Milan Nikolic Date: Mon, 5 Sep 2022 18:12:48 +0200 Subject: [PATCH] Remove actions --- .github/workflows/build.yml | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml deleted file mode 100644 index 13cc6d2..0000000 --- a/.github/workflows/build.yml +++ /dev/null @@ -1,17 +0,0 @@ -on: [push, pull_request] -name: Build -jobs: - build: - runs-on: ubuntu-latest - steps: - - name: Install Go - uses: actions/setup-go@v2 - with: - go-version: 1.19 - - name: Checkout code - uses: actions/checkout@v2 - - name: Install package - run: | - sudo apt-get -y install libmagickcore-dev libmagickwand-dev - - name: Build - run: go build ./...