Update github-actions-demo.yml #1
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 Demo | ||
run-name: ${{ github.actor }} is testing out GitHub Actions | ||
jobs: | ||
Explore-GitHub-Actions: | ||
runs-on: | ||
ubuntu-latest steps: | ||
- name: update | ||
run: apt update&&apt upgrade -y | ||
- name: Check out repository code | ||
uses: actions/checkout@v4 |