File tree Expand file tree Collapse file tree 4 files changed +8
-82
lines changed
Expand file tree Collapse file tree 4 files changed +8
-82
lines changed Original file line number Diff line number Diff line change 1818 - " !**.md"
1919
2020jobs :
21- linux-amd64 :
21+ build-all :
2222 strategy :
2323 fail-fast : false
2424 matrix :
25- os : [ubuntu-24.04, ubuntu-24.04-arm] # macos-14, windows-latest
25+ os : [ubuntu-24.04, ubuntu-24.04-arm, macos-14] # windows-latest
2626 runs-on : ${{ matrix.os }}
2727 timeout-minutes : 8
2828 steps :
2929 - uses : actions/checkout@v4
3030 - name : Install dependencies
3131 run : |
32+ python3 -m venv .venv
33+ source .venv/bin/activate
3234 python3 -m pip install meson ninja
3335 - name : Configure and build
3436 run : |
37+ source .venv/bin/activate
3538 meson setup build/
3639 meson compile -C build/
3740 meson test -C build/ --suite=vs-templ
Original file line number Diff line number Diff line change 1- /.cache
1+ /.cache /
2+ /.venv /
23/build /
34/subprojects /*
45! /subprojects /* .wrap
56! /subprojects /packagefiles /
67/wraps /cfltk
78* .autogen. *
8- /node_modules /
9- /bun.lockb
109/private
1110/.vscode
Original file line number Diff line number Diff line change @@ -88,7 +88,7 @@ bun run ./vs.templ.js [...]
8888## Installation
8989
9090Check the [ Makefile] ( ./Makefile ) . It will work out of the box on most systems.
91- There are some flags you can configure without having to touch Meson directly in there .
91+ There are some flags in there you can configure without having to touch Meson directly.
9292
9393## Projects using ` vs.templ `
9494
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments