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
7 changes: 7 additions & 0 deletions .github/workflows/pra-01-Hello-World.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
name: Hello World 111
on: workflow_dispatch
jobs:
echo-HelloWorld:
runs-on: ubuntu-24.04
steps:
- run: echo "Hello World"
18 changes: 18 additions & 0 deletions .github/workflows/pra-02-3steps.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: 3 steps
on: workflow_dispatch
jobs:
echo-hello:
runs-on: ubuntu-24.04
steps:
- run: echo "Hello World"
print-hello:
runs-on: ubuntu-24.04
steps:
- run: print("Hello World")
shell: python
run-github-action:
runs-on: ubuntu-24.04
steps:
- uses: actions/hello-world-javascript-action@v1
with:
who-to-greet: 'Hello'
21 changes: 21 additions & 0 deletions .github/workflows/pra-03-stepbystep.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: stepbystep1
on: workflow_dispatch
jobs:
job1:
runs-on: ubuntu-24.04
steps:
- run: echo 'run job 1'
job2:
runs-on: ubuntu-24.04
steps:
- run: echo 'run job 2'
job3:
runs-on: ubuntu-24.04
needs: [job1, job2]
steps:
- run: echo 'run job 3'
job4:
runs-on: ubuntu-24.04
needs: [job1, job3]
steps:
- run: echo 'run job 4'
20 changes: 20 additions & 0 deletions .github/workflows/pra04-pull-request.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: pull request 1
on:
push:
branches:
- 'example-branch/*'
pull_request:
types:
- opened
- reopened
- synchronize
paths:
- '!03-core-features/filters/excluded-file.txt'
- '03-core-features/filters/included-file.md'
workflow_dispatch:
jobs:
echo-hello:
runs-on: ubuntu-24.04
steps:
- name: hello
run: cat "$GITHUB_EVENT_PATH"
2 changes: 1 addition & 1 deletion 01-history-and-motivation/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ The time between writing and shipping software has shrunk drastically over the d
| ☁️ 2010s–Now | **CI/CD pipelines & cloud** | Multiple times per day |

![](./readme-assets/speed-of-delivery-over-time.png)

Hello gay
## History of CI Systems

| Year | CI Tool | Significance |
Expand Down
1 change: 1 addition & 0 deletions 03-core-features/filters/included-file.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
hello