Skip to content
Draft
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
6 changes: 3 additions & 3 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ name: "CodeQL"
on:
push:
branches: [ main ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ main ]
# pull_request:
# # The branches below must be a subset of the branches above
# branches: [ main ]
schedule:
- cron: '24 2 * * 6'

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deploy-dev-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ name: Deploy and Test on Dev
on:
merge_group:
branches: [main]
pull_request:
branches: [main]
# pull_request:
# branches: [main]
push:
branches: [main]
tags: ["v*"]
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/docs-test.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: Test Documentation Build

on:
pull_request:
branches:
- main
# pull_request:
# branches:
# - main

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/juno-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
- v*
branches:
- main
pull_request:
# pull_request:
permissions:
contents: read
pull-requests: read
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/juno-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, ubuntu-arm64-4-core]
iteration: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20]
runs-on: ${{ matrix.os }}
env:
VM_DEBUG: true
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/trivy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ name: Container Security
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
# pull_request:
# branches: [ "main" ]
schedule:
- cron: '29 19 * * 4'

Expand Down
1 change: 1 addition & 0 deletions migration/blocktransactions/blocktransactions_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ const (
)

func TestBlockTransactionsMigration(t *testing.T) {
t.Skip("Temporary skip")
t.Run("Empty database", func(t *testing.T) {
database := openDatabase(t, t.TempDir())

Expand Down
Loading