yellow-shine is testing out GitHub Actions π #23
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: GitHub Actions Demo3 | |
run-name: ${{ github.actor }} is testing out GitHub Actions π | |
on: [workflow_dispatch] | |
jobs: | |
Explore-GitHub-Actions: | |
strategy: | |
fail-fast: false | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.13' | |
- name: Check Python and Pip Locations | |
run: | | |
which python | |
which pip | |
which pip3 | |
- name: Install Conan | |
run: | | |
pip install --user conan==1.65.0 # Use --user to avoid permission issues | |
conan --version |