From fa2c2b78cbe9543aa01b234373f66c5d05454fa7 Mon Sep 17 00:00:00 2001 From: Eric Joanis Date: Thu, 25 Jan 2024 10:43:09 -0500 Subject: [PATCH] ci: use setup python instead of conda --- .github/workflows/test.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a784718..d1acf5e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -15,10 +15,11 @@ jobs: steps: - name: Checkout repository uses: actions/checkout@v3 - - name: Set up Conda - uses: conda-incubator/setup-miniconda@v2 + - name: Set up Python + uses: actions/setup-python@v4 with: python-version: "3.8" + cache: "pip" - name: Install dependencies and package run: pip install -e . mypy - name: Minimal test, --help should work