From 9c45e01354456e3b35876054d6704acfad7242cf Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Tue, 4 Jul 2023 14:41:40 -0700 Subject: [PATCH] restore ubuntu --- .github/workflows/python-tests.yml | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/.github/workflows/python-tests.yml b/.github/workflows/python-tests.yml index b4f401947..d96cc129f 100644 --- a/.github/workflows/python-tests.yml +++ b/.github/workflows/python-tests.yml @@ -10,7 +10,7 @@ on: jobs: build: - runs-on: windows-latest + runs-on: ubuntu-latest strategy: matrix: python-version: ["3.8", "3.9", "3.10", "3.11"] @@ -26,12 +26,8 @@ jobs: - name: Install universal ctags run: | - if [[ "${{ runner.os }}" == "Windows" ]]; then - choco install universal-ctags - else - sudo apt-get update - sudo apt-get install -y universal-ctags - fi + sudo apt-get update + sudo apt-get install -y universal-ctags - name: Install dependencies run: |