run setup function #8
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 Custom Action | |
on: | |
#push to any branch | |
push: | |
branches: | |
- '*' | |
jobs: | |
test-action: | |
strategy: | |
matrix: | |
os: [ ubuntu-latest, windows-latest, macos-latest ] | |
fail-fast: false | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Install action | |
uses: vechain/networkhub@add-release-step-2 | |
with: | |
version: 'v0.0.3' | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Run CLI | |
run: network-hub | |