All checks were successful
CI / build (push) Successful in 35s
Introduce a basic CI pipeline configuration using GitHub Actions. The workflow runs on Ubuntu and consists of three simple build steps, which print progress messages. This setup will serve as a foundation for future CI/CD enhancements.
19 lines
275 B
YAML
19 lines
275 B
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Step one
|
|
run: echo "Step one passed"
|
|
|
|
- name: Step two
|
|
run: echo "Step two passed"
|
|
|
|
- name: Step three
|
|
run: echo "Step three passed"
|