Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions .github/workflows/github-actions-demo.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: GitHub Actions Demo
run-name: ${{ github.actor }} is testing out GitHub Actions 🚀
on: [push]
jobs:
Explore-GitHub-Actions:
runs-on: ubuntu-latest
steps:
- run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event."
- run: 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 }}."
- name: Check out repository code
uses: actions/checkout@v4
- run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner."
- run: echo "🖥️ The workflow is now ready to test your code on the runner."
- name: List files in the repository
run: |
ls ${{ github.workspace }}
- run: echo "🍏 This job's status is ${{ job.status }}."
- run: echo "Job complete ${{ job.status }}."
Binary file added Barber CI_CD Experience.pdf
Binary file not shown.
2 changes: 2 additions & 0 deletions Laith's CI Experience
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
During my last software engineering internship, the company I worked for sort of worked with CI. They had one major product that they kept updating continuously.
However, I wouldn't say they went through CD, because version releases were really far apart and not back to back.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,9 @@ Sample Top Five project for the CI/CD activity in class. To run the project loca
* pip install -r requirements.txt
* python app.py
* Open browser and visit http://127.0.0.1:5000/ (or designated link provided)

* First and Last names:
Laith Al-Masri
James Barber
Ethan Surber

1 change: 1 addition & 0 deletions es_previous.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
I have had no experience with CI/CD before. I hope to gain some over this summer at my internship though!
4 changes: 2 additions & 2 deletions templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@
<style>
body {
font-family: Arial, sans-serif;
margin: 2em;
margin: 4em;
}
form {
margin-bottom: 2em;
margin-bottom: 4em;
}
table {
width: 100%;
Expand Down