Skip to content

save / reuse user data #152

save / reuse user data

save / reuse user data #152

Workflow file for this run

name: Test for the server/ directory
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
workflow_dispatch:
jobs:
build-headful:

Check failure on line 11 in .github/workflows/server-test.yaml

View workflow run for this annotation

GitHub Actions / Test for the server/ directory

Invalid workflow file

The workflow is not valid. .github/workflows/server-test.yaml (Line: 11, Col: 3): Error calling workflow 'onkernel/kernel-images/.github/workflows/chromium-headful-image.yaml@4470a859f8c5203d37e25ba5b30efb8b754937c5'. The nested job 'docker' is requesting 'packages: write', but is only allowed 'packages: read'.
uses: ./.github/workflows/chromium-headful-image.yaml
secrets: inherit
build-headless:
uses: ./.github/workflows/chromium-headless-image.yaml
secrets: inherit
test:
runs-on: ubuntu-latest
needs: [build-headful, build-headless]
permissions:
contents: read
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: "server/go.mod"
cache: true
- name: Run server Makefile tests
run: make test
working-directory: server