fix pipelines

This commit is contained in:
sfja 2026-03-30 10:49:28 +02:00
parent c1645497b2
commit 5959ca4fbb
3 changed files with 6 additions and 2 deletions

View File

@ -6,7 +6,7 @@ on:
paths: [ "backend/**" ] paths: [ "backend/**" ]
pull_request: pull_request:
branches: [ "main" ] branches: [ "main" ]
workflow_dispatch workflow_dispatch:
jobs: jobs:
check: check:

View File

@ -11,8 +11,11 @@ on:
jobs: jobs:
check: check:
name: Check name: Check
runs-on: ubuntu-latest
container: sfja/h5-mst-ci:game-ci
needs: [lint, build_and_test] needs: [lint, build_and_test]
lint: lint:
name: Lint
runs-on: ubuntu-latest runs-on: ubuntu-latest
container: sfja/h5-mst-ci:game-ci container: sfja/h5-mst-ci:game-ci
steps: steps:
@ -26,6 +29,7 @@ jobs:
continue-on-error: true continue-on-error: true
run: cargo clippy run: cargo clippy
build_and_test: build_and_test:
name: Build and test
runs-on: ubuntu-latest runs-on: ubuntu-latest
container: sfja/h5-mst-ci:game-ci container: sfja/h5-mst-ci:game-ci
steps: steps:

View File

@ -6,7 +6,7 @@ on:
paths: [ "skateboard/**" ] paths: [ "skateboard/**" ]
pull_request: pull_request:
branches: [ "main" ] branches: [ "main" ]
workflow_dispatch workflow_dispatch:
jobs: jobs:
check: check: