2022-07-01 12:11:32 +02:00
|
|
|
# Checks whether the jafar tool is still WAI.
|
2021-02-02 12:05:47 +01:00
|
|
|
name: jafar
|
|
|
|
on:
|
2021-02-03 13:20:37 +01:00
|
|
|
push:
|
|
|
|
branches:
|
2021-05-06 19:56:55 +02:00
|
|
|
- "release/**"
|
2022-07-01 12:11:32 +02:00
|
|
|
|
2021-02-02 12:05:47 +01:00
|
|
|
jobs:
|
|
|
|
test:
|
2021-05-06 19:56:55 +02:00
|
|
|
runs-on: ubuntu-20.04
|
2021-02-02 12:05:47 +01:00
|
|
|
steps:
|
|
|
|
- uses: actions/setup-go@v1
|
|
|
|
with:
|
2022-06-17 20:12:14 +02:00
|
|
|
go-version: "1.18.3"
|
2021-02-02 12:05:47 +01:00
|
|
|
- uses: actions/checkout@v2
|
2021-02-03 13:20:37 +01:00
|
|
|
- run: go build -v ./internal/cmd/jafar
|
2021-02-02 12:05:47 +01:00
|
|
|
- run: sudo ./testjafar.bash
|