Skip to content

Commit

Permalink
fix: Revert unneded changes
Browse files Browse the repository at this point in the history
  • Loading branch information
x1m3 committed Dec 3, 2024
1 parent f90e6cd commit 19d80c0
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 103 deletions.
28 changes: 0 additions & 28 deletions .github/workflows/ci-build.yaml

This file was deleted.

8 changes: 0 additions & 8 deletions .github/workflows/ci-lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,19 +11,11 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Install Go
uses: actions/setup-go@v4
with:
go-version-file: go.mod
cache: true

- name: Download Go modules
run: go mod tidy && go mod download

- name: Clear module cache
run: go clean -modcache

- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
Expand Down
25 changes: 11 additions & 14 deletions .github/workflows/ci-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,24 +13,21 @@ jobs:
test:
strategy:
matrix:
containers: [ 1.21.7 ]
containers: [ 1.20.4, 1.19, 1.18 ]
runs-on: ubuntu-latest
container: golang:${{ matrix.containers }}
steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Set up Go
uses: actions/setup-go@v3
- uses: actions/cache@v3
with:
go-version-file: go.mod
cache: true

- name: Download Go modules
run: go mod tidy && go mod download

- name: Clear module cache
run: go clean -modcache

path: |
~/.cache/go-build
/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Update go modules
run: go mod tidy
- name: Unit Tests
run: go test -v -race -timeout=60s ./...
run: go test -v -race -timeout=60s ./...
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/iden3/iden3comm/v2

go 1.21.7
go 1.18

require (
github.com/dustinxie/ecc v0.0.0-20210511000915-959544187564
Expand Down
Loading

0 comments on commit 19d80c0

Please sign in to comment.