Skip to content

Merge branch 'chore/close-sprint' into 'main' #18

Merge branch 'chore/close-sprint' into 'main'

Merge branch 'chore/close-sprint' into 'main' #18

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
check:
name: make check
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Run make check
run: |
docker run --rm \
-v "$(pwd):/workspace" \
-w /workspace \
ghcr.io/devrail-dev/dev-toolchain:v1 \
make _check
gitleaks:
name: gitleaks
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Run gitleaks
run: |
docker run --rm \
-v "$(pwd):/workspace" \
-w /workspace \
ghcr.io/devrail-dev/dev-toolchain:v1 \
gitleaks detect --source . --report-format json --report-path /tmp/gitleaks-results.json