Files
goma-operator/.github/workflows/test.yml
Jonas Kaninda 59e2f0164b
Some checks failed
Tests / Run on Ubuntu (push) Has been cancelled
E2E Tests / Run on Ubuntu (push) Has been cancelled
Lint / Run on Ubuntu (push) Failing after 23m29s
Initial commit
2024-11-27 08:29:51 +01:00

24 lines
369 B
YAML

name: Tests
on:
push:
pull_request:
jobs:
test:
name: Run on Ubuntu
runs-on: ubuntu-latest
steps:
- name: Clone the code
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: '~1.22'
- name: Running Tests
run: |
go mod tidy
make test