Make workflow reuseable #20
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: AAT CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check ls | |
run: ls -la | |
- name: Start Routers Workflow | |
uses: ./.github/workflows/start-routers.yaml | |
with: | |
crossbar_port: "8081" | |
xconn_port: "8080" | |
- name: Install Wick | |
run: sudo snap install wick --classic | |
- name: Test Crossbar | |
run: make run-wick-commands url=ws://localhost:8081/ws | |
- name: Test XConn | |
run: make run-wick-commands url=ws://localhost:8080/ws |