Skip to content

Merge pull request #33 from lxzan/testing #75

Merge pull request #33 from lxzan/testing

Merge pull request #33 from lxzan/testing #75

Workflow file for this run

name: autobahn
on:
push:
branches:
- master
- testing
pull_request:
branches:
- master
- testing
jobs:
test:
strategy:
matrix:
os: [ ubuntu-latest ]
go: [ 1.18.x ]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go }}
- name: Autobahn
env:
CRYPTOGRAPHY_ALLOW_OPENSSL_102: yes
run: |
chmod +x ./autobahn/script/run.sh & ./autobahn/script/run.sh
- name: Autobahn Report Artifact
if: >-
startsWith(matrix.os, 'ubuntu')
uses: actions/upload-artifact@v2
with:
name: autobahn report ${{ matrix.go }} ${{ matrix.os }}
path: autobahn/report
retention-days: 7