Skip to content

Allow default python3 to be installed #18

Allow default python3 to be installed

Allow default python3 to be installed #18

Workflow file for this run

name: CI
on:
workflow_dispatch:
push:
branches:
- master
paths:
- "bin/*"
- ".github/workflows/*"
pull_request:
paths:
- "bin/*"
- ".github/workflows/*"
jobs:
plugin_test:
name: asdf plugin test
strategy:
matrix:
os:
- ubuntu-latest
- macos-latest
runs-on: ${{ matrix.os }}
steps:
- name: Install extras
if: ${{ matrix.os == 'macos-latest'}}
run: |
which python3
brew unlink python@3.12
brew link --force python@3.11
- uses: asdf-vm/actions/plugin-test@v3
with:
command: az version
env:
GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }}