Skip to content

Commit

Permalink
ci example
Browse files Browse the repository at this point in the history
  • Loading branch information
chendaniely committed Jun 1, 2024
1 parent 7fabdb6 commit afdc7d9
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/ci_example.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: CI Example

on: [push, pull_request, workflow_dispatch]

jobs:
my_steps:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- name: Run a one-line script
run: echo Hello, world!

- name: Run a multi-line script
run: |
echo Add other actions to build,
echo test, and deploy your project.

0 comments on commit afdc7d9

Please sign in to comment.