Skip to content

Commit

Permalink
ci(hello-world): add test ci
Browse files Browse the repository at this point in the history
  • Loading branch information
wiwichips committed Jul 10, 2024
1 parent e388205 commit a5b06b6
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/hello-world.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Hello World Workflow

on:
push:
branches: [main]
pull_request:
branches: [main]

jobs:
hello-world-job:
runs-on: ubuntu-latest

strategy:
matrix:
python-version: [3.8, 3.9, 3.10, 3.11]

steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}

- name: Print Hi using Python
run: python3 -c 'print("Hi")'

0 comments on commit a5b06b6

Please sign in to comment.