renamed as original #3
This file contains 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 | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
test: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest] | |
include: | |
# - os: windows-latest | |
# crlf: fix | |
- os: ubuntu-latest | |
runs-on: ${{matrix.os}} | |
steps: | |
# - name: Force Line Endings for Windows | |
# if: ${{ matrix.crlf }} | |
# run: | | |
# git config --global core.autocrlf false | |
# git config --global core.eol lf | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Zig | |
uses: goto-bus-stop/setup-zig@v2 | |
with: | |
version: 0.13.0 | |
- name: Build | |
run: | | |
zig version | |
zig build |