build badge link fix #31
This file contains 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: Build & Tests | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
linux: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install libzip | |
run: sudo apt-get install -y libzip-dev | |
- uses: actions/checkout@v4 | |
- name: make | |
run: make HAVE_LIBZIP=1 HAVE_GZIP=1 | |
- name: make tests | |
run: make HAVE_LIBZIP=1 HAVE_GZIP=1 tests | |
msys2-mingw64: | |
# https://www.msys2.org/docs/ci/ | |
runs-on: windows-latest | |
defaults: | |
run: | |
shell: msys2 {0} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: msys2/setup-msys2@v2 | |
with: | |
msystem: MINGW64 | |
update: true | |
install: git make pkg-config mingw64/mingw-w64-x86_64-gcc mingw64/mingw-w64-x86_64-libzip mingw64/mingw-w64-x86_64-zlib | |
- name: CI-Build | |
run: | | |
echo 'Running in MSYS2!' | |
make HAVE_LIBZIP=1 HAVE_GZIP=1 clean tests |