diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index a1e834a..4af1e46 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -1,6 +1,6 @@ name: Lint -on: [push, pull_request] +on: [push] concurrency: group: ${{ github.workflow }}-${{ github.ref_name }} @@ -22,6 +22,7 @@ jobs: run: | apt-get update apt-get -y install curl + apt-get -y install git - name: Configure Python uses: actions/setup-python@v5 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f02a428..53fc8ce 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,6 +1,6 @@ name: Test -on: [push, pull_request] +on: [push] concurrency: group: ${{ github.workflow }}-${{ github.ref_name }} @@ -18,6 +18,12 @@ jobs: steps: - uses: actions/checkout@v4 + - name: Install dependencies + run: | + apt-get update + apt-get -y install curl + apt-get -y install git + - name: Configure Python uses: actions/setup-python@v5 with: