Skip to content

build(deps): bump golang.org/x/sys from 0.5.0 to 0.14.0 #45

build(deps): bump golang.org/x/sys from 0.5.0 to 0.14.0

build(deps): bump golang.org/x/sys from 0.5.0 to 0.14.0 #45

Workflow file for this run

on:
pull_request:
push:
branches:
- main
name: build
jobs:
tests:
strategy:
matrix:
os: [ ubuntu-latest, macos-latest ]
include:
- os: ubuntu-latest
libapparmor: true
runs-on: ${{ matrix.os }}
continue-on-error: true
steps:
- uses: actions/checkout@v4
- if: ${{ matrix.libapparmor }}
name: Install libapparmor-dev
run: sudo apt-get install -y libapparmor-dev
- name: Build
run: make build
- name: Tests
run: make test
- if: ${{ matrix.libapparmor }}
name: E2E Tests
run: make e2e