Skip to content

feat: create path if don't exist #10

feat: create path if don't exist

feat: create path if don't exist #10

Workflow file for this run

name: zcached tests
on:
push:
paths-ignore:
- "**/README.md"
- ".gitignore"
- "LICENSE"
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Install Zig
run: |
curl -sSfL https://ziglang.org/builds/zig-linux-x86_64-0.11.0.tar.xz | tar -xJ
shell: bash
- name: Lint Code
run: zig-linux-x86_64-0.11.0/zig fmt --check .
- name: Run Tests
run: zig-linux-x86_64-0.11.0/zig test --main-pkg-path .. tests.zig