Skip to content

try again

try again #18

Workflow file for this run

name: C/C++ CI
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
# build:
# 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
# - name: make tests
# run: make HAVE_LIBZIP=1 tests
build-win64:
runs-on: windows-latest
steps:

Check failure on line 22 in .github/workflows/c-cpp.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/c-cpp.yml

Invalid workflow file

You have an error in your yaml syntax on line 22
- uses: actions/checkout@v4
- name: get gcc path
run: which gcc
- name: install libzip
run: pacman -S libzip
- name: make
run: make HAVE_LIBZIP=1
- name: make tests
run: make HAVE_LIBZIP=1 tests