Skip to content

Allow default python3 to be installed #27

Allow default python3 to be installed

Allow default python3 to be installed #27

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: |
sudo rm -rf /Library/Frameworks/Python.framework/Versions/3.12
sudo rm -rf "/Applications/Python 3.12"
sudo find /usr/local/bin -lname '../../../Library/Frameworks/Python.framework/Versions/3.12/*' -delete
brew link --force python@3.11
hash -r
python3 --version
- uses: asdf-vm/actions/plugin-test@v3
with:
command: az version
env:
GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }}