Skip to content

Commit

Permalink
Merge branch 'main' into feature/tap_nom-optional
Browse files Browse the repository at this point in the history
  • Loading branch information
mgovers authored Jun 5, 2024
2 parents 72722a1 + fd1802b commit a53189c
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 1 deletion.
33 changes: 33 additions & 0 deletions .github/workflows/dco-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# SPDX-FileCopyrightText: Contributors to the Power Grid Model project <powergridmodel@lfenergy.org>
#
# SPDX-License-Identifier: MPL-2.0

name: Check DCO
# Workaround because DCO plugin is stuck. See https://github.com/dcoapp/app/issues/211

on:
pull_request:
push:
branches:
- main

jobs:
dco:
name: DCO
runs-on: ubuntu-latest
if: ${{ github.actor != 'dependabot[bot]' }}
steps:
- uses: actions/checkout@v4

- name: Setup python
uses: actions/setup-python@v5
with:
python-version: '3.10'
architecture: x64

- name: Check DCO
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
pip install dco-check
dco-check --verbose
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ jobs:
strategy:
matrix:
build-option: [ debug, release ]
compiler: [msvc, clang-cl]
compiler: [msvc] # , clang-cl] TODO(mgovers): reenable Clang CL when https://github.com/actions/runner-images/issues/10001 is fixed

env:
PRESET: ${{ matrix.compiler }}-${{ matrix.build-option }}
Expand Down

0 comments on commit a53189c

Please sign in to comment.