Update action.yml #29
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: test-action | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
default: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
permissions: {} | |
name: Install NCTL scan | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
with: | |
token: ${{ secrets.PAT }} | |
- name: Install NCTL scan | |
uses: ./ | |
- name: Check install | |
run: nctl version | |
- name: Check scan help | |
run: nctl scan --help |