diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3f5e971..9967dfe 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,7 +17,7 @@ jobs: strategy: matrix: - go: [ '1.15.x', '1.16.x' ] + go: [ '1.16.x', '1.17.x' ] steps: - name: Set up Go @@ -77,16 +77,8 @@ jobs: working-directory: ${{env.SRC_DIR}} run: make deps - - name: Install Aligo - working-directory: ${{env.SRC_DIR}} - run: | - wget https://apps.kaos.st/aligo/latest/linux/x86_64/aligo - chmod +x aligo - - - name: Print Aligo version info - working-directory: ${{env.SRC_DIR}} - run: ./aligo --version - - - name: Check Go structs alignment info - working-directory: ${{env.SRC_DIR}} - run: ./aligo check ./... + - name: Check Golang sources with Aligo + uses: essentialkaos/aligo-action@v1 + with: + path: ${{env.SRC_DIR}} + files: ./... diff --git a/README.md b/README.md index 01a6d80..60b471d 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ _**Note, that this is beta software, so it's entirely possible that there will b ### Installation -Make sure you have a working Go 1.15+ workspace (_[instructions](https://golang.org/doc/install)_), then: +Make sure you have a working Go 1.16+ workspace (_[instructions](https://golang.org/doc/install)_), then: ```` go get -d pkg.re/essentialkaos/go-crowd.v3