-
Notifications
You must be signed in to change notification settings - Fork 0
31 lines (26 loc) · 921 Bytes
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# This is the name of the workflow, it appears in the GitHub Actions tab
name: Continuous Integration
# The name for workflow runs generated from this workflow
run-name: CI Run on ${{ github.ref }} by @${{ github.actor }}
# This specifies the events that will trigger the workflow to run
on: [push, pull_request]
# Jobs define the actual tasks that the workflow will execute
jobs:
setup:
uses: ./.github/workflows/setup_environment.yml
with:
python-version: '3.11'
build_and_check:
needs: setup
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
# A step to block .env files
- name: Block .env files from being committed
run: |
if git diff --name-only origin/main..HEAD | grep -qE "^.env|^.env.example|^.env.sample"
then
echo ".env files must not be committed"
exit 1
fi