From 0ca449fac78860c8baf45e4f495c1f67f06d118c Mon Sep 17 00:00:00 2001 From: Mauro Franceschini Date: Mon, 4 Apr 2022 18:01:54 +0200 Subject: [PATCH] test: removed actions --- .github/workflows/release.yml | 31 ------------------------------- .github/workflows/test.yml | 16 ---------------- .releaserc.json | 7 ------- 3 files changed, 54 deletions(-) delete mode 100644 .github/workflows/release.yml delete mode 100644 .github/workflows/test.yml delete mode 100644 .releaserc.json diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml deleted file mode 100644 index ed03af0..0000000 --- a/.github/workflows/release.yml +++ /dev/null @@ -1,31 +0,0 @@ -name: Release -on: - push: - branches: - - main - - beta -jobs: - test: - name: Testing - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - uses: actions/setup-go@v3 - with: - go-version: '1.18' - - name: Invoking test - run: go test ./... - release: - name: Release - runs-on: ubuntu-latest - needs: - - test - steps: - - uses: actions/checkout@v2 - - uses: actions/setup-node@v1 - with: - node-version: 14 - - name: Release - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - run: npx semantic-release \ No newline at end of file diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml deleted file mode 100644 index 7ff3962..0000000 --- a/.github/workflows/test.yml +++ /dev/null @@ -1,16 +0,0 @@ -name: Test -on: - push: - branches: - - develop -jobs: - test: - name: Testing - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - uses: actions/setup-go@v3 - with: - go-version: '1.18' - - name: Invoking test - run: go test ./... \ No newline at end of file diff --git a/.releaserc.json b/.releaserc.json deleted file mode 100644 index 6c4fb71..0000000 --- a/.releaserc.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "plugins": [ - "@semantic-release/commit-analyzer", - "@semantic-release/release-notes-generator", - "@semantic-release/github" - ] -} \ No newline at end of file