Skip to content

Exclude devcontainer scripts from GitHub stats #77

Exclude devcontainer scripts from GitHub stats

Exclude devcontainer scripts from GitHub stats #77

Workflow file for this run

name: build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
ci:
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest, macos-latest, windows-latest ]
runs-on: ${{ matrix.os }}
defaults:
run:
shell: bash
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: 1.19
- uses: open-policy-agent/setup-opa@v2
with:
version: 0.48
- name: Build
run: make ci
- name: Upload coverage
uses: actions/upload-artifact@v3
with:
name: coverage
path: coverage.*
- name: Upload dist
uses: actions/upload-artifact@v3
with:
name: dist
path: dist
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3.1.1
with:
file: ./coverage.out
flags: ${{ runner.os }}