Skip to content

Add Git Level 1 basics + Git workflow project #17

Add Git Level 1 basics + Git workflow project

Add Git Level 1 basics + Git workflow project #17

Workflow file for this run

name: Basic CI
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Run basic check
run: echo "CI workflow is running successfully!"