From 54cd28fb54d9647f462025a25409f6863fcf51c5 Mon Sep 17 00:00:00 2001 From: Taner Topal Date: Wed, 12 Jul 2023 17:26:42 +0200 Subject: [PATCH] Test hosted cache --- .github/workflows/python_version_demo.yml | 24 +++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/python_version_demo.yml diff --git a/.github/workflows/python_version_demo.yml b/.github/workflows/python_version_demo.yml new file mode 100644 index 00000000000..bfcfd51111b --- /dev/null +++ b/.github/workflows/python_version_demo.yml @@ -0,0 +1,24 @@ +name: Core + +on: + push: + branches: + - main + pull_request: + branches: + - main + +env: + FLWR_TELEMETRY_ENABLED: 0 + +jobs: + test-hosted-cache: + runs-on: ubuntu-22.04 + strategy: + matrix: + python: [3.7.15, 3.7] + steps: + - name: Set up Python + uses: actions/setup-python@v4 + with: + python-version: ${{ matrix.python }}