Skip to content

create workflow that runs python script #8

create workflow that runs python script

create workflow that runs python script #8

Workflow file for this run

name: GitHub Actions Demo
on: [push]
jobs:
First_trial_job: #Job name
runs-on: ubuntu-latest #Name of an Operating System
steps:
- name: Job_Info
run: |
echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event."
echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!"
#run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}."