Skip to content
Open
Show file tree
Hide file tree
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
9 changes: 9 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
name: Build and test
permissions:
contents: read
Comment thread
yhabib marked this conversation as resolved.
# We use `push` events so that we have the actual commit. In `pull_request`
# events we get a merge commit with main instead. The merge commit can be
# useful to check that the code would pass tests once merged, but here it just
Expand Down Expand Up @@ -174,6 +176,9 @@ jobs:
test-rest:
needs: build
runs-on: ubuntu-24.04
permissions:
# The Release step creates and updates a GitHub release.
contents: write
Comment thread
yhabib marked this conversation as resolved.
timeout-minutes: 40
steps:
- name: Checkout nns-dapp
Expand Down Expand Up @@ -466,6 +471,10 @@ jobs:
name: "Upload assets"
needs: build
runs-on: ubuntu-24.04
permissions:
# The Release step creates a GitHub release. A later step pushes the
# refs/notes/mainnet/wasm-sha note.
contents: write
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- name: Get docker build outputs
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
name: Unit Tests
permissions:
contents: read
Comment thread
yhabib marked this conversation as resolved.
on:
push:
concurrency:
Expand Down Expand Up @@ -255,6 +257,10 @@ jobs:
matrix:
os: [ubuntu-24.04, macos-15-intel]
runs-on: ${{ matrix.os }}
permissions:
contents: read
# download-ci-wasm.test reads the Actions API.
actions: read
env:
# Used by download-ci-wasm.test
GH_TOKEN: ${{ github.token }}
Expand Down
Loading