From b50a1755c8b027826d6adce3ca189fc3ea644e90 Mon Sep 17 00:00:00 2001 From: me-no-dev Date: Sat, 25 Jan 2020 15:26:16 +0200 Subject: [PATCH] Use python3 in CI --- .github/workflows/push.yml | 9 +++++++++ .github/workflows/release.yml | 3 +++ 2 files changed, 12 insertions(+) diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 42d4735f..e8aec981 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -19,6 +19,9 @@ jobs: steps: - uses: actions/checkout@v1 + - uses: actions/setup-python@v1 + with: + python-version: '3.x' - name: Build Sketches run: bash ./.github/scripts/on-push.sh ${{ matrix.chunk }} 15 @@ -32,6 +35,9 @@ jobs: steps: - uses: actions/checkout@v1 + - uses: actions/setup-python@v1 + with: + python-version: '3.x' - name: Build Sketches run: bash ./.github/scripts/on-push.sh @@ -45,5 +51,8 @@ jobs: steps: - uses: actions/checkout@v1 + - uses: actions/setup-python@v1 + with: + python-version: '3.x' - name: Build Sketches run: bash ./.github/scripts/on-push.sh 1 1 #equal and non-zero to trigger PIO diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 83b62516..6f63870e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -11,6 +11,9 @@ jobs: steps: - uses: actions/checkout@master + - uses: actions/setup-python@v1 + with: + python-version: '3.x' - name: Build Release env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}