v1.1 #13
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: "Test" | |
on: | |
workflow_dispatch: | |
release: | |
types: [created] | |
tags: | |
- 'v*' | |
jobs: | |
client-dual-by-default: | |
runs-on: ubuntu-latest | |
name: client warp+doh mode by default | |
steps: | |
- uses: fscarmen/warp-on-actions@v1.1 | |
client-ipv4: | |
runs-on: ubuntu-latest | |
name: client warp+doh mode with ipv4 | |
steps: | |
- name: Set up WARP with client with ipv4 | |
uses: fscarmen/warp-on-actions@v1.1 | |
with: | |
mode: client | |
stack: ipv4 | |
client-ipv6: | |
runs-on: ubuntu-latest | |
name: client warp+doh mode with ipv6 | |
steps: | |
- name: Set up WARP with client | |
uses: fscarmen/warp-on-actions@v1.1 | |
with: | |
mode: client | |
stack: ipv6 | |
client-dual: | |
runs-on: ubuntu-latest | |
name: client warp+doh mode with dual | |
steps: | |
- name: Set up WARP with client | |
uses: fscarmen/warp-on-actions@v1.1 | |
with: | |
mode: client | |
stack: dual |