Skip to content

yellow-shine is testing out GitHub Actions πŸš€ #23

yellow-shine is testing out GitHub Actions πŸš€

yellow-shine is testing out GitHub Actions πŸš€ #23

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