From 9255864763797490a84158f1b184ff456ab2f533 Mon Sep 17 00:00:00 2001 From: Philip Krauss Date: Tue, 7 Nov 2023 15:11:30 +0100 Subject: [PATCH] old action file --- .github/worflows/pull-request.yml | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100644 .github/worflows/pull-request.yml diff --git a/.github/worflows/pull-request.yml b/.github/worflows/pull-request.yml deleted file mode 100644 index 040597b..0000000 --- a/.github/worflows/pull-request.yml +++ /dev/null @@ -1,31 +0,0 @@ -name: Pull Request - -on: [push, pull_request] - -jobs: - build: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - name: Set up Go - uses: actions/setup-go@v4 - with: - go-version: '1.21' - - name: Lint - run: make lint - - name: License check - run: | - curl -s https://raw.githubusercontent.com/lluissm/license-header-checker/master/install.sh | bash - ./bin/license-header-checker -a -r .github/license-header.txt . go && [[ -z `git status -s` ]] - - name: Unit tests - run: make test - env: - XATA_API_KEY: ${{ secrets.XATA_API_KEY }} - - name: Integration tests - run: make integration-test - env: - XATA_API_KEY: ${{ secrets.XATA_API_KEY }} - - name: Cleanup - run: make clean-workspaces - env: - XATA_API_KEY: ${{ secrets.XATA_API_KEY }}