Updated Instructions file for all projects #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
# Homework 1 Part 1: Setting up your Environment | |
name: 'Hello World' | |
on: | |
push: | |
paths: | |
- 'AppSec-Project-1/**' | |
jobs: | |
hello_job: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Echo Hello World | |
run: | | |
cd AppSec-Project-1 | |
echo "Hello World" |