From bda5701d5cfee1b3c78bdb2b5aafd69d5ae6e84c Mon Sep 17 00:00:00 2001 From: MaksymLeus Date: Tue, 3 Feb 2026 18:29:35 +0200 Subject: [PATCH 1/2] fix: test CI --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 6db2cbe..466b0b4 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,3 @@ # testApp_sourcecode test +aa From 3641a28f4b49ef593fa0b152014ab2fa754cc1ab Mon Sep 17 00:00:00 2001 From: MaksymLeus Date: Tue, 3 Feb 2026 18:32:18 +0200 Subject: [PATCH 2/2] fix: test CI --- .github/workflows/ci.yml | 44 ++++++++++++++++++++-------------------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 366e7c5..72ed1e3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,19 +22,19 @@ env: jobs: - # Verification: - # if: github.ref_name != 'main' - # name: Verification of all checks - # runs-on: ubuntu-latest + Verification: + if: github.ref_name != 'main' + name: Verification of all checks + runs-on: ubuntu-latest - # steps: - # - name: Checkout code - # uses: actions/checkout@v4 + steps: + - name: Checkout code + uses: actions/checkout@v4 - # - name: Set up Go ${{ env.GO_VERSION }} - # uses: actions/setup-go@v5 - # with: - # go-version: ${{ env.GO_VERSION }} + - name: Set up Go ${{ env.GO_VERSION }} + uses: actions/setup-go@v5 + with: + go-version: ${{ env.GO_VERSION }} # # - name: Cache Go modules # # uses: actions/cache@v3 @@ -47,17 +47,17 @@ jobs: # # ${{ runner.os }}-go- - # - name: Run Lint - # run: | - # echo "Running lint..." - # fmt_out=$(gofmt -l .) - # if [ -n "$fmt_out" ]; then - # echo "Go code is not formatted:" - # echo "$fmt_out" - # gofmt -d . - # exit 1 - # fi - # go vet ./... + - name: Run Lint + run: | + echo "Running lint..." + fmt_out=$(gofmt -l .) + if [ -n "$fmt_out" ]; then + echo "Go code is not formatted:" + echo "$fmt_out" + gofmt -d . + exit 1 + fi + go vet ./... # - name: Run tests # run: |