Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

# Set all permissions to none
permissions: {}

Comment thread
MacOS marked this conversation as resolved.
jobs:
# `allTests` used to run in a single job alongside `assemble`. On a 7 GB
# ubuntu-latest runner the combined peak RSS (Gradle JVM + Kotlin daemon +
Expand All @@ -36,6 +39,10 @@ jobs:
tasks: jsTest wasmJsTest wasmWasiTest
- name: native
tasks: linuxX64Test

permissions:
contents: read

steps:
- name: Checkout
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
Expand Down Expand Up @@ -101,6 +108,10 @@ jobs:
name: assemble
runs-on: ubuntu-latest
timeout-minutes: 40

permissions:
contents: read

steps:
- name: Checkout
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
Expand Down