From f7e7cb0e550378c3aa972c79dcbda479417c03cb Mon Sep 17 00:00:00 2001 From: Jeff Geerling Date: Mon, 23 Mar 2020 12:31:02 -0500 Subject: [PATCH] Fixes #63: Use ansible/ansible instead of ansible-base for CI. --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 01a40d48..8a648cfc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,8 +26,8 @@ jobs: with: python-version: ${{ matrix.python_version }} - - name: Install ansible-base - run: pip install git+https://github.com/ansible-collection-migration/ansible-base.git --disable-pip-version-check + - name: Install ansible base (devel branch) + run: pip install https://github.com/ansible/ansible/archive/devel.tar.gz --disable-pip-version-check - name: Run sanity tests on Python ${{ matrix.python_version }} run: ansible-test sanity --docker -v --color --python ${{ matrix.python_version }}