From b1aea28e0bab9fca8beffd7da9a42a22e5dec77f Mon Sep 17 00:00:00 2001 From: Sameh Abouel-saad Date: Mon, 18 Nov 2024 01:53:57 +0200 Subject: [PATCH] remove obsolete client workflows --- .../.github/workflows/lint.yml | 35 ------------------- .../.github/workflows/test.yml | 24 ------------- 2 files changed, 59 deletions(-) delete mode 100644 clients/tfchain-client-go/.github/workflows/lint.yml delete mode 100644 clients/tfchain-client-go/.github/workflows/test.yml diff --git a/clients/tfchain-client-go/.github/workflows/lint.yml b/clients/tfchain-client-go/.github/workflows/lint.yml deleted file mode 100644 index 81bcef5d4..000000000 --- a/clients/tfchain-client-go/.github/workflows/lint.yml +++ /dev/null @@ -1,35 +0,0 @@ -name: Lint -on: - pull_request: - paths-ignore: - - "readme.md" - push: - paths-ignore: - - "readme.md" - -jobs: - lint: - name: lint - runs-on: ubuntu-latest - timeout-minutes: 5 - steps: - - name: Set up Go - uses: actions/setup-go@v3 - with: - go-version: "1.21" - id: go - - - name: Check out code into the Go module directory - uses: actions/checkout@v3.2.0 - with: - submodules: "true" - - - name: golangci-lint - uses: golangci/golangci-lint-action@v3 - with: - args: --timeout 3m --verbose - - - name: gofmt - uses: Jerome1337/gofmt-action@v1.0.5 - with: - gofmt-flags: "-l -d" \ No newline at end of file diff --git a/clients/tfchain-client-go/.github/workflows/test.yml b/clients/tfchain-client-go/.github/workflows/test.yml deleted file mode 100644 index 951e7a782..000000000 --- a/clients/tfchain-client-go/.github/workflows/test.yml +++ /dev/null @@ -1,24 +0,0 @@ -name: test-substrate-client - -on: - push: - -jobs: - build: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - - name: install go - uses: actions/setup-go@v3 - with: - go-version: 1.18 - - - name: run docker image - run: docker run -d -p 9944:9944 threefolddev/tfchain:2.3.0-rc2 --dev --ws-external - - - name: wait for node initialization - run: sleep 3 - - - name: run test - run: go test -v ./...