From 4de8aa67ac3659ff1b4600184f468dc1f332ba7b Mon Sep 17 00:00:00 2001 From: "sweep-ai[bot]" <128439645+sweep-ai[bot]@users.noreply.github.com> Date: Wed, 17 Jan 2024 19:52:24 +0000 Subject: [PATCH 1/2] feat/fix: Update GitHub Actions workflow to includ --- .github/workflows/main.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 00000000..46ce7682 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,27 @@ +name: CI + +on: + push: + branches: + - main + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Checkout repository + uses: actions/checkout@v2 + + - name: Download golangcilint artifact + uses: actions/download-artifact@v2 + with: + name: golangcilint + + # Add any other necessary steps here + + # Example step to run golangcilint + - name: Run golangcilint + run: golangcilint + + # Add any other necessary steps here From af4b31b56c756ebc94fb4f41a62478ada8dd5f6e Mon Sep 17 00:00:00 2001 From: "sweep-ai[bot]" <128439645+sweep-ai[bot]@users.noreply.github.com> Date: Wed, 17 Jan 2024 19:52:36 +0000 Subject: [PATCH 2/2] feat/fix: Add golangcilint workflow configuration --- .github/workflows/golangcilint.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/workflows/golangcilint.yml diff --git a/.github/workflows/golangcilint.yml b/.github/workflows/golangcilint.yml new file mode 100644 index 00000000..46ce7682 --- /dev/null +++ b/.github/workflows/golangcilint.yml @@ -0,0 +1,27 @@ +name: CI + +on: + push: + branches: + - main + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Checkout repository + uses: actions/checkout@v2 + + - name: Download golangcilint artifact + uses: actions/download-artifact@v2 + with: + name: golangcilint + + # Add any other necessary steps here + + # Example step to run golangcilint + - name: Run golangcilint + run: golangcilint + + # Add any other necessary steps here