Skip to content
This repository has been archived by the owner on Sep 19, 2023. It is now read-only.

Add issue template #133

Add issue template

Add issue template #133

Workflow file for this run

name: Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
tests-go-stable:
runs-on: ubuntu-latest
defaults:
run:
shell: bash
working-directory: faucet
strategy:
matrix:
go: [ '1.18' ]
steps:
- name: Set up Golang
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go }}
- name: Checkout
uses: actions/checkout@v3
- name: Test
run: make test
- name: Retain event logs of failed tests
if: failure()
uses: actions/upload-artifact@v3
with:
name: event-log-go-1.18
path: failed-test-data
tests-go-latest:
runs-on: ubuntu-latest
defaults:
run:
shell: bash
working-directory: faucet
steps:
- name: Set up Golang
uses: actions/setup-go@v3
with:
go-version: 1.18
check-latest: true
- name: Checkout
uses: actions/checkout@v3
- name: Test
run: make test
- name: Retain event logs of failed tests
if: failure()
uses: actions/upload-artifact@v3
with:
name: event-log-go-latest
path: failed-test-data