Skip to content

ci: only require read permissions in the GitHub Action Workflow to av… #10

ci: only require read permissions in the GitHub Action Workflow to av…

ci: only require read permissions in the GitHub Action Workflow to av… #10

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: '21'
cache: 'sbt'
- name: ✅ Generate a project and run its test
run: sbt g8Test