From bbb1fc40a49043461887dbff3dbe89ddc180f024 Mon Sep 17 00:00:00 2001 From: SmileRex <78729299+RexReposit@users.noreply.github.com> Date: Thu, 23 Jan 2025 05:07:07 +0300 Subject: [PATCH] Delete .github/workflows directory --- .github/workflows/go.yml | 21 --------------------- .github/workflows/gorunner.yml | 28 ---------------------------- 2 files changed, 49 deletions(-) delete mode 100644 .github/workflows/go.yml delete mode 100644 .github/workflows/gorunner.yml diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml deleted file mode 100644 index b11367a..0000000 --- a/.github/workflows/go.yml +++ /dev/null @@ -1,21 +0,0 @@ -# This workflow will build a golang project -# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go - -name: Go - -on: - push: - branches: [ "main" ] - -jobs: - - build: - runs-on: self-hosted - steps: - - name: Set up Go - uses: actions/setup-go@v4 - with: - go-version: '1.23' - - - name: Build - run: ehco hello diff --git a/.github/workflows/gorunner.yml b/.github/workflows/gorunner.yml deleted file mode 100644 index 4a77464..0000000 --- a/.github/workflows/gorunner.yml +++ /dev/null @@ -1,28 +0,0 @@ -# This workflow will build a golang project -# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go - -name: GoRunner - -on: - push: - branches: [ "main" ] - pull_request: - branches: [ "main" ] - -jobs: - - build: - runs-on: self-hosted - steps: - - uses: actions/checkout@v4 - - - name: Set up Go - uses: actions/setup-go@v4 - with: - go-version: '1.20' - - - name: Build - run: go build -v ./... - - - name: Test - run: go test -v ./...