mirror of
https://github.com/Xevion/Pac-Man.git
synced 2025-12-05 23:15:40 -06:00
fix: only run most workflows against 'master' branch
This commit is contained in:
10
.github/workflows/build.yaml
vendored
10
.github/workflows/build.yaml
vendored
@@ -1,5 +1,13 @@
|
|||||||
name: Builds
|
name: Builds
|
||||||
on: ["push", "pull_request"]
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
pull_request:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
permissions:
|
permissions:
|
||||||
contents: write
|
contents: write
|
||||||
|
|||||||
9
.github/workflows/checks.yaml
vendored
9
.github/workflows/checks.yaml
vendored
@@ -1,6 +1,13 @@
|
|||||||
name: Checks
|
name: Checks
|
||||||
|
|
||||||
on: ["push", "pull_request"]
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
pull_request:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
env:
|
env:
|
||||||
CARGO_TERM_COLOR: always
|
CARGO_TERM_COLOR: always
|
||||||
|
|||||||
8
.github/workflows/coverage.yaml
vendored
8
.github/workflows/coverage.yaml
vendored
@@ -1,6 +1,12 @@
|
|||||||
name: Code Coverage
|
name: Code Coverage
|
||||||
|
|
||||||
on: ["push", "pull_request"]
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
pull_request:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
|
||||||
env:
|
env:
|
||||||
CARGO_TERM_COLOR: always
|
CARGO_TERM_COLOR: always
|
||||||
|
|||||||
9
.github/workflows/tests.yaml
vendored
9
.github/workflows/tests.yaml
vendored
@@ -1,6 +1,13 @@
|
|||||||
name: Tests
|
name: Tests
|
||||||
|
|
||||||
on: ["push", "pull_request"]
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
pull_request:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
env:
|
env:
|
||||||
CARGO_TERM_COLOR: always
|
CARGO_TERM_COLOR: always
|
||||||
|
|||||||
@@ -132,7 +132,7 @@ A comprehensive list of features needed to complete the Pac-Man emulation, organ
|
|||||||
- [x] Animation system
|
- [x] Animation system
|
||||||
- [x] HUD rendering
|
- [x] HUD rendering
|
||||||
- [ ] Display Options
|
- [ ] Display Options
|
||||||
- [ ] Fullscreen support
|
- [x] Fullscreen support
|
||||||
- [x] Window resizing
|
- [x] Window resizing
|
||||||
- [ ] Pause while resizing (SDL2 limitation mitigation)
|
- [ ] Pause while resizing (SDL2 limitation mitigation)
|
||||||
- [ ] Multiple resolution support
|
- [ ] Multiple resolution support
|
||||||
|
|||||||
Reference in New Issue
Block a user