Merge pull request #274 from warpdesign/tiff-iff-share-packbits-compr… #755
Workflow file for this run
This file contains hidden or 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: 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 |