Skip to content

Commit

Permalink
Add license check action
Browse files Browse the repository at this point in the history
Signed-off-by: Wojciech Tatarski <wtatarski@antmicro.com>
  • Loading branch information
wtatarski committed Jun 2, 2021
1 parent d23fc85 commit f9a1442
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# Copyright (C) 2020-2021 The SymbiFlow Authors.
#
# Use of this source code is governed by a ISC-style
# license that can be found in the LICENSE file or at
# https://opensource.org/licenses/ISC
#
# SPDX-License-Identifier:ISC

name: CI tests

on: [push, pull_request]
Expand Down
27 changes: 27 additions & 0 deletions .github/workflows/licensing.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Copyright (C) 2017-2021 The SymbiFlow Authors.
#
# Use of this source code is governed by a ISC-style
# license that can be found in the LICENSE file or at
# https://opensource.org/licenses/ISC
#
# SPDX-License-Identifier: ISC

name: Licensing

on:
push:
pull_request:


jobs:
Checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- uses: SymbiFlow/actions/checks@main
with:
exclude_license: |
./design_introspection-plugin/tests/selection_to_tcl_list/selection_to_tcl_list.v
third_party: |
./third_party/googletest/

0 comments on commit f9a1442

Please sign in to comment.