diff --git a/.forgejo/workflows/builds.yaml b/.forgejo/workflows/builds.yaml deleted file mode 100644 index d588a7fa6..000000000 --- a/.forgejo/workflows/builds.yaml +++ /dev/null @@ -1,24 +0,0 @@ -on: - pull_request: - push: - branches: - - tcl/master - -jobs: - builds: - name: Builds - runs-on: ubuntu-latest - strategy: - matrix: - go_versions: [ '1.22', '1.23' ] - fail-fast: false - steps: - - uses: actions/checkout@v3 - - - name: Set up Go - uses: actions/setup-go@v3 - with: - go-version: '${{ matrix.go_versions }}' - - - name: Build binary - run: make \ No newline at end of file diff --git a/.forgejo/workflows/dco.yml b/.forgejo/workflows/dco.yml deleted file mode 100644 index 4acd63341..000000000 --- a/.forgejo/workflows/dco.yml +++ /dev/null @@ -1,20 +0,0 @@ -on: [pull_request] - -jobs: - dco: - name: DCO - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - with: - fetch-depth: 0 - - - name: Setup Go - uses: actions/setup-go@v3 - with: - go-version: '1.23' - - - name: Run commit format checker - uses: https://git.frostfs.info/TrueCloudLab/dco-go@v3 - with: - from: 'origin/${{ github.event.pull_request.base.ref }}' diff --git a/.forgejo/workflows/tests.yml b/.forgejo/workflows/tests.yml index 43f9517e4..c2f507f05 100644 --- a/.forgejo/workflows/tests.yml +++ b/.forgejo/workflows/tests.yml @@ -5,31 +5,13 @@ on: - tcl/master jobs: - lint: - name: Lint - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - - name: Set up Go - uses: actions/setup-go@v3 - with: - go-version: '1.23' - cache: true - - - name: Install linters - run: go install github.com/golangci/golangci-lint/cmd/golangci-lint@latest - - - name: Run linters - # we run the linter only through the FrostFS backend code - run: golangci-lint --timeout=5m run internal/backend/frostfs/ tests: name: Tests runs-on: oci-runner strategy: matrix: - go_versions: [ '1.22', '1.23' ] + go_versions: [ '1.23' ] fail-fast: false steps: - uses: actions/checkout@v3