Continuous Integration Run on refs/pull/95/merge by @dependabot[bot] #294
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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: Continuous Integration 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 |