Skip to content

gateway: block header x-osrd-core #59

gateway: block header x-osrd-core

gateway: block header x-osrd-core #59

Workflow file for this run

name: PR Checks
on:
pull_request:
jobs:
check_lint_and_build:
name: Lint and build the chart
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Helm
uses: azure/setup-helm@v4
- name: Set Name and Version
run: |
CHART_NAME="osrd-dev"
CHART_VERSION="0.1.${{ github.run_id }}"
echo "CHART_NAME=$CHART_NAME" >> $GITHUB_ENV
echo "CHART_VERSION=$CHART_VERSION" >> $GITHUB_ENV
sed -i "s/NAME_REPLACE_ME/$CHART_NAME/" ./Chart.yaml
sed -i "s/VERSION_REPLACE_ME/$CHART_VERSION/" ./Chart.yaml
- name: Lint Helm Chart
run: helm lint .
- name: Package the Chart
run: |
helm package .
check_reuse_compliance:
name: Check REUSE Compliance
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: REUSE Compliance Check
uses: fsfe/reuse-action@v4