This repository has been archived by the owner on Nov 17, 2023. It is now read-only.
MXNet has graduated #2205
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: license check | |
on: [push, pull_request] | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
licensecheck: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Update Submodules | |
run: | | |
git submodule update --init --recursive | |
- name: Check License Header | |
uses: apache/skywalking-eyes@main | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |