Skip to content

Commit 94665e2

Browse files
daniellimwsmithro
authored andcommitted
Add license checking github action and update license
Signed-off-by: Daniel Lim Wee Soong <weesoong.lim@gmail.com>
1 parent 9b07ad2 commit 94665e2

File tree

10 files changed

+42
-9
lines changed

10 files changed

+42
-9
lines changed

.github/workflows/licensing.yml

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Copyright (C) 2017-2021 The SymbiFlow Authors.
2+
#
3+
# Use of this source code is governed by a ISC-style
4+
# license that can be found in the LICENSE file or at
5+
# https://opensource.org/licenses/ISC
6+
#
7+
# SPDX-License-Identifier: ISC
8+
9+
10+
name: Licensing
11+
12+
13+
on:
14+
push:
15+
pull_request:
16+
17+
18+
jobs:
19+
Checks:
20+
runs-on: ubuntu-latest
21+
steps:
22+
- uses: actions/checkout@v2
23+
24+
- uses: SymbiFlow/actions/checks@main

.github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (C) 2020 SymbiFlow Authors.
1+
# Copyright (C) 2020-2021 The SymbiFlow Authors.
22
#
33
# Use of this source code is governed by a ISC-style
44
# license that can be found in the LICENSE file or at

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (C) 2017-2020 The Project X-Ray Authors.
1+
Copyright (C) 2017-2020 The SymbiFlow Authors.
22

33
Permission to use, copy, modify, and/or distribute this software for any
44
purpose with or without fee is hereby granted, provided that the above

Makefile.template

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (C) 2020 SymbiFlow Authors.
1+
# Copyright (C) 2020-2021 The SymbiFlow Authors.
22
#
33
# Use of this source code is governed by a ISC-style
44
# license that can be found in the LICENSE file or at

conda.mk

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (C) 2020 The SymbiFlow Authors.
1+
# Copyright (C) 2020-2021 The SymbiFlow Authors.
22
#
33
# Use of this source code is governed by a ISC-style
44
# license that can be found in the LICENSE file or at

mkdir.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (C) 2020 SymbiFlow Authors.
1+
# Copyright (C) 2020-2021 The SymbiFlow Authors.
22
#
33
# Use of this source code is governed by a ISC-style
44
# license that can be found in the LICENSE file or at

os.mk

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (C) 2020 The SymbiFlow Authors.
1+
# Copyright (C) 2020-2021 The SymbiFlow Authors.
22
#
33
# Use of this source code is governed by a ISC-style
44
# license that can be found in the LICENSE file or at

test/check.py

+10-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,13 @@
1-
#!/usr/bin/env python
1+
#!/usr/bin/env python3
2+
# -*- coding: utf-8 -*-
3+
#
4+
# Copyright (C) 2020-2021 The SymbiFlow Authors.
5+
#
6+
# Use of this source code is governed by a ISC-style
7+
# license that can be found in the LICENSE file or at
8+
# https://opensource.org/licenses/ISC
9+
#
10+
# SPDX-License-Identifier: ISC
211

312
# Check that no system packages are found in the environment.
413
import sys

touch.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (C) 2020 SymbiFlow Authors.
1+
# Copyright (C) 2020-2021 The SymbiFlow Authors.
22
#
33
# Use of this source code is governed by a ISC-style
44
# license that can be found in the LICENSE file or at

wget.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (C) 2020 SymbiFlow Authors.
1+
# Copyright (C) 2020-2021 The SymbiFlow Authors.
22
#
33
# Use of this source code is governed by a ISC-style
44
# license that can be found in the LICENSE file or at

0 commit comments

Comments
 (0)