Skip to content

Actor stexandev Event push #2

Actor stexandev Event push

Actor stexandev Event push #2

Workflow file for this run

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