Skip to content

fix: update nginx config file parsing logic to handle variables with … #105

fix: update nginx config file parsing logic to handle variables with …

fix: update nginx config file parsing logic to handle variables with … #105

Workflow file for this run

name: Continuous Integration
on:
push:
branches:
- main
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'
pull_request:
branches:
- main
types:
- opened
- reopened
- synchronize
jobs:
checks:
name: Linting
runs-on: ubuntu-22.04
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup Golang Environment
uses: actions/setup-go@v4
with:
go-version-file: go.mod
- name: Lint Code
uses: golangci/golangci-lint-action@v3
with:
only-new-issues: true
unit-tests:
name: Unit Tests
runs-on: ubuntu-22.04
needs: checks
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Setup Golang Environment
uses: actions/setup-go@v4
- name: Run Tests
run: make test
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
files: ./results/crossplane-go-coverage.out