From f820b5f83551cfd1d7852995e4140d0d254d59c7 Mon Sep 17 00:00:00 2001 From: Alex Savin Date: Tue, 27 May 2025 23:14:26 -0400 Subject: [PATCH] Added some changes to the CI.yml --- .github/workflows/CI.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 6838bc1..82609de 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -7,6 +7,7 @@ on: branches: - develop paths-ignore: + - '.github/**' - 'README.md' jobs: @@ -19,16 +20,18 @@ jobs: os: - ubuntu-latest steps: - - uses: actions/setup-go@v5 + - name: Set up Golang environment + uses: actions/setup-go@v5 with: go-version: ${{ matrix.go-version }} - - uses: actions/checkout@v4 + - name: Checkout Code + uses: actions/checkout@v4 - name: Go Get / Go Test run: | go get -u . - go test ./. + go test ./... - name: Output Summary id: output-summary