8000 Merge pull request #274 from warpdesign/tiff-iff-share-packbits-compression · zigimg/zigimg@8663bd5 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Merge pull request #274 from warpdesign/tiff-iff-share-packbits-compr… #755

Merge pull request #274 from warpdesign/tiff-iff-share-packbits-compr…

Merge pull request #274 from warpdesign/tiff-iff-share-packbits-compr… #755

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{matrix.os}}
steps:
- name: Prepare git
run: |-
git config --global core.autocrlf false
git config --global core.eol lf
- name: Checkout zigimg
uses: actions/checkout@v2
with:
path: zigimg
- name: Checkout test-suite fixtures
uses: actions/checkout@v3
with:
repository: zigimg/test-suite
path: test-suite
- name: Setup Zig
uses: mlugg/setup-zig@v1
with:
version: 0.14.0-dev.2577+271452d22
- name: AST Verify
run: zig fmt --check --ast-check src/
working-directory: zigimg
- name: Run test suite
run: zig build test
working-directory: zigimg
0