Skip to content

Fix wt_200k_G.c "initializer element is not constant" error with GCC < 8.1 #38

Fix wt_200k_G.c "initializer element is not constant" error with GCC < 8.1

Fix wt_200k_G.c "initializer element is not constant" error with GCC < 8.1 #38

Workflow file for this run

name: Check pull request branch
on:
pull_request_target:
types:
- opened
- reopened
- synchronize
- edited
jobs:
check-branches:
runs-on: ubuntu-latest
steps:
- name: Check branches
run: |
if [ ${{ github.head_ref }} != "devel" ] && [ ${{ github.base_ref }} == "master" ]; then
echo "Merge requests to master branch are only allowed from devel branch."
exit 1
fi