Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: always run license checks #1117

Merged
merged 1 commit into from
Mar 29, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
ci: always run license checks
  • Loading branch information
bmwill committed Mar 28, 2022
commit f6b7d8eaf032939c8241ed2dbf9a8b63b578e1f4
9 changes: 7 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -132,8 +132,13 @@ jobs:
with:
command: fmt
args: --all -- --check
- name: license-check
run: scripts/license_check.sh

license-check:
name: license-check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: scripts/license_check.sh

cargo-deny:
name: cargo-deny (advisories, licenses, bans, ...)
Expand Down
3 changes: 3 additions & 0 deletions explorer/client/src/setupTests.ts
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
// Copyright (c) 2022, Mysten Labs, Inc.
// SPDX-License-Identifier: Apache-2.0

import '@testing-library/jest-dom';
3 changes: 3 additions & 0 deletions explorer/client/src/utils/reportWebVitals.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright (c) 2022, Mysten Labs, Inc.
// SPDX-License-Identifier: Apache-2.0

import type { ReportHandler } from 'web-vitals';

enum ReportMethod {
Expand Down