fix crash on exit in single file mode, use smooth scrolling for file … #22
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build console apps | |
on: | |
push: | |
branches: | |
- main | |
- sdl2-only | |
pull_request: | |
branches: | |
- main | |
jobs: | |
all: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
include: | |
- platform: wiiu | |
ext: wuhb | |
- platform: switch | |
ext: nro | |
- platform: wii | |
ext: dol | |
- platform: 3ds | |
ext: 3dsx | |
container: | |
image: ghcr.io/fortheusers/sealeo | |
steps: | |
- uses: actions/checkout@main | |
with: | |
submodules: recursive | |
- name: Build ${{ matrix.platform }} | |
run: make ${{ matrix.platform }} | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: vgedit.${{ matrix.ext }} | |
path: /__w/vgedit/vgedit/vgedit.${{ matrix.ext }} |