Skip to content

Commit

Permalink
Also install git
Browse files Browse the repository at this point in the history
  • Loading branch information
glatteis committed Jul 2, 2024
1 parent c0a9d47 commit a8836c9
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Lint

on: [push, pull_request]
on: [push]

concurrency:
group: ${{ github.workflow }}-${{ github.ref_name }}
Expand All @@ -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
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Test

on: [push, pull_request]
on: [push]

concurrency:
group: ${{ github.workflow }}-${{ github.ref_name }}
Expand All @@ -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:
Expand Down

0 comments on commit a8836c9

Please sign in to comment.