Skip to content

Minor style changes, thinner edges and much greater contrast for the … #58

Minor style changes, thinner edges and much greater contrast for the …

Minor style changes, thinner edges and much greater contrast for the … #58

Workflow file for this run

name: CI
on:
push:
branches: [ "acceptable" ]
pull_request:
branches: [ "acceptable" ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
container:
image: archlinux
steps:
- name: Install dependencies
run: |
pacman -Syu --noconfirm
pacman -S --needed --noconfirm zig sdl2 sdl2_ttf
- name: Checkout repository
uses: actions/checkout@v3
- name: Run tests and compile
run: |
zig build test
zig build -Doptimize=ReleaseSafe
- name: Publish binary
uses: actions/upload-artifact@v3.1.0
with:
name: zigtris
path: zig-out/bin/zigtris