From 0d82b0d4a7384f8aac03bafc46f664db54ecde24 Mon Sep 17 00:00:00 2001 From: Tom Hu Date: Tue, 22 Oct 2024 11:01:16 -0500 Subject: [PATCH] fix: apt install git --- .github/workflows/main.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 0cbc993..d11d36c 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -96,10 +96,13 @@ jobs: run-container: runs-on: ubuntu-latest - container: python:3.10-slim + container: python:latest steps: - name: Checkout uses: actions/checkout@v4.2.2 + - name: Install deps + run: | + sudo apt install git-all - name: Upload coverage to Codecov (script) uses: ./ with: