fd333bad16
1. reduce the number of periodic builds 2. just build as part of the release process in most cases 3. shorttests duplicates coverage Preliminary changes as part of https://github.com/ooni/probe/issues/1466
16 lines
311 B
YAML
16 lines
311 B
YAML
# e2eminiooni runs end-to-end tests using miniooni
|
|
name: "e2eminiooni"
|
|
on:
|
|
push:
|
|
branches:
|
|
- "master"
|
|
jobs:
|
|
test:
|
|
runs-on: "ubuntu-20.04"
|
|
steps:
|
|
- uses: actions/setup-go@v1
|
|
with:
|
|
go-version: "1.16"
|
|
- uses: actions/checkout@v2
|
|
- run: ./E2E/miniooni.bash
|