mirror of
https://github.com/status-im/nimbus-eth1.git
synced 2025-01-13 13:55:45 +00:00
Add copyright year linter for fluffy and verified proxy (#2018)
This commit is contained in:
parent
3486e08492
commit
cc4d13835f
14
.github/workflows/fluffy.yml
vendored
14
.github/workflows/fluffy.yml
vendored
@ -305,3 +305,17 @@ jobs:
|
|||||||
- name: Run fluffy testnet
|
- name: Run fluffy testnet
|
||||||
run: |
|
run: |
|
||||||
./fluffy/scripts/launch_local_testnet.sh --run-tests
|
./fluffy/scripts/launch_local_testnet.sh --run-tests
|
||||||
|
|
||||||
|
lint:
|
||||||
|
name: "Lint Fluffy"
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
fetch-depth: 2 # In PR, has extra merge commit: ^1 = PR, ^2 = base
|
||||||
|
|
||||||
|
- name: Check copyright year
|
||||||
|
if: ${{ !cancelled() }} && github.event_name == 'pull_request'
|
||||||
|
run: |
|
||||||
|
bash scripts/check_copyright_year.sh
|
||||||
|
14
.github/workflows/nimbus_verified_proxy.yml
vendored
14
.github/workflows/nimbus_verified_proxy.yml
vendored
@ -223,3 +223,17 @@ jobs:
|
|||||||
build/nimbus_verified_proxy --help
|
build/nimbus_verified_proxy --help
|
||||||
# "-static" option will not work for osx unless static system libraries are provided
|
# "-static" option will not work for osx unless static system libraries are provided
|
||||||
make ${DEFAULT_MAKE_FLAGS} nimbus-verified-proxy-test
|
make ${DEFAULT_MAKE_FLAGS} nimbus-verified-proxy-test
|
||||||
|
|
||||||
|
lint:
|
||||||
|
name: "Lint verified proxy"
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
fetch-depth: 2 # In PR, has extra merge commit: ^1 = PR, ^2 = base
|
||||||
|
|
||||||
|
- name: Check copyright year
|
||||||
|
if: ${{ !cancelled() }} && github.event_name == 'pull_request'
|
||||||
|
run: |
|
||||||
|
bash scripts/check_copyright_year.sh
|
||||||
|
Loading…
x
Reference in New Issue
Block a user