Skip to content

[EXPERIMENT] Migrate notify-pr.sh from Ruby to Go #2

[EXPERIMENT] Migrate notify-pr.sh from Ruby to Go

[EXPERIMENT] Migrate notify-pr.sh from Ruby to Go #2

Workflow file for this run

name: Test
on:
pull_request:
branches:
- main
- master
push:
branches:
- main
- master
jobs:
test:
name: Run Tests
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Okteto CLI
uses: okteto/setup@v1
with:
token: ${{ secrets.OKTETO_TOKEN }}
- name: Run tests with Okteto
uses: okteto/test@latest
- name: Upload coverage artifact
uses: actions/upload-artifact@v4
if: always()
with:
name: coverage-report
path: coverage.out
if-no-files-found: warn
build:
name: Validate Dockerfile
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build Docker image
uses: docker/build-push-action@v5
with:
context: .
file: ./Dockerfile
push: false
cache-from: type=gha
cache-to: type=gha,mode=max