Skip to content

Bump cc from 1.2.25 to 1.2.41 #71

Bump cc from 1.2.25 to 1.2.41

Bump cc from 1.2.25 to 1.2.41 #71

Workflow file for this run

# SPDX-License-Identifier: GPL-3.0
# Copyright (c) 2025 Gavin Henry <ghenry@sentrypeer.org>
name: CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install deps
run: |
set -x
sudo apt-get update
sudo echo RESET grub-efi/install_devices | sudo debconf-communicate grub-pc
sudo apt-get -y upgrade
sudo apt-get install \
pkg-config \
libgnutls28-dev \
libmsgpack-dev \
libargon2-dev \
libasio-dev \
libfmt-dev \
nettle-dev \
ninja-build -y
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose