Skip to content

all: make Data.get return type optional #100

all: make Data.get return type optional

all: make Data.get return type optional #100

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
fmt-check:
name: Check formatting
timeout-minutes: 1
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Setup Zig
uses: goto-bus-stop/setup-zig@v1
with:
version: master
- name: Check format
run: zig fmt --check .
build:
name: Build and test
timeout-minutes: 5
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Setup Zig
uses: goto-bus-stop/setup-zig@v1
with:
version: master
- name: Build
run: zig build
- name: Run demo
run: zig build run-demo
- name: Test
run: zig build test