From 9ac5a37af16ec8e1140906cb210eb4f8c3dcd0de Mon Sep 17 00:00:00 2001 From: Alex Stephen Date: Mon, 6 Jan 2020 14:32:28 -0800 Subject: [PATCH] requirements --- .github/workflows/integration.yml | 3 ++- requirements.txt | 2 ++ 2 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 requirements.txt diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 0a1a183f..7d430617 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -16,10 +16,11 @@ jobs: uses: actions/setup-python@v1 with: python-version: 3.7 - - name: Install ansible + - name: Install ansible and collection dependencies run: | python -m pip install --upgrade pip pip install ansible + pip install -r requirements.txt - name: Build and install collection run: | ansible-galaxy collection build . diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 00000000..8840a833 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,2 @@ +requests +google-auth