Skip to content

NOISSUE - Bump github.com/jmoiron/sqlx from 1.3.5 to 1.4.0 (#266) #906

NOISSUE - Bump github.com/jmoiron/sqlx from 1.3.5 to 1.4.0 (#266)

NOISSUE - Bump github.com/jmoiron/sqlx from 1.3.5 to 1.4.0 (#266) #906

# Copyright (c) Abstract Machines
# SPDX-License-Identifier: Apache-2.0
name: Check License Header
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
check-license:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Check License Header
run: |
CHECK=$(grep -rcL --exclude-dir={.git,build} \
--exclude=\*.{crt,key,pem,md,csv,mod,sum,png,jpeg,ico,json,prettierrc} \
--exclude=LICENSE \
--regexp "Copyright (c) Abstract Machines" .)
if [ "$CHECK" ]; then
echo "License header check failed. Fix the following files:"
echo "$CHECK"
exit 1
fi