Skip to content

Update c-cpp.yml

Update c-cpp.yml #4

Workflow file for this run

name: Build
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout code
uses: actions/checkout@v3
- name: clone vcpkg
run: git clone https://github.com/microsoft/vcpkg.git
- name: bootstrap vcpkg
run: ./vcpkg/bootstrap-vcpkg.sh -disableMetrics
- name: install dependencies
run: ./vcpkg/vcpkg install
# env:
# VCPKG_BINARY_SOURCES: "clear;x-gha,readwrite"
- name: Build the project
run: make