Skip to content

testing github action #1

testing github action

testing github action #1

Workflow file for this run

name: CI
on:
pull_request:
branches: [main]
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Check for conflicts
run: |
git fetch origin main
git merge-base --is-ancestor origin/main HEAD || (echo "Branch is not up to date with main. Please update." && exit 1)