test: makeing a re-usable action #1
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 Re-usable actions | |
on: | |
# Should trigger on a push to any branch | |
push: | |
branches: | |
- "*" | |
jobs: | |
test-os: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Test Re-usable Action | |
uses: vechain/networkhub@add-reusable-action |