Skip to content

build(deps): Bump actions/checkout from 3 to 4 #13

build(deps): Bump actions/checkout from 3 to 4

build(deps): Bump actions/checkout from 3 to 4 #13

Workflow file for this run

---
name: CI
on:
push:
branches: [main]
tags: ['v*.*.*']
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- uses: actions/setup-go@v4
with:
go-version: 'stable'
- name: Install dependencies
run: make dep
- name: Test main jsonnet
run: make test
- name: Build/Render jsonnet
run: make build
- name: Run unit tests
run: cd tests && make