Actor stexandev Event push #2
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: CI tutorial | |
run-name: Actor ${{ github.actor }} Event ${{ github.event_name }} | |
on: push | |
jobs: | |
first_job: | |
name: First Job | |
runs-on: ubuntu-latest # not a docker image but a full featured VM!? | |
steps: | |
- run: echo OS ${{ runner.os }} | |
- name: checkout repo | |
uses: actions/checkout@v4 | |
- name: ls | |
run: ls ${{ github.workspace }} | |
- name: setup python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.12" | |
- name: upgrade pip | |
run: python -m pip install -U pip |