Skip to content

fix: increment sender count in copy constructor #15

fix: increment sender count in copy constructor

fix: increment sender count in copy constructor #15

Workflow file for this run

on:
workflow_dispatch:
push:
branches: ["**"]
paths-ignore:
- "**/*.md"
pull_request:
branches: ["**"]
name: Test on Arch-Linux
jobs:
test-arch-release:
runs-on: ubuntu-latest
container: archlinux
strategy:
fail-fast: false
matrix:
language: ["cpp"]
steps:
- name: Checkout
uses: actions/checkout@v2.4.0
- name: Install build dependencies
run: "pacman --noconfirm -Syu base-devel cmake gcc git make"
- name: Compile
run: "mkdir build && cd build && cmake .. -Dchannel_tests=ON && cmake --build . --config Release"
- name: Run Tests
run: "./build/tests/channel-tests"
test-arch-debug:
runs-on: ubuntu-latest
container: archlinux
strategy:
fail-fast: false
matrix:
language: ["cpp"]
steps:
- name: Checkout
uses: actions/checkout@v2.4.0
- name: Install build dependencies
run: "pacman --noconfirm -Syu base-devel cmake gcc git make"
- name: Compile
run: "mkdir build && cd build && cmake .. -Dchannel_tests=ON && cmake --build . --config Debug"
- name: Run Tests
run: "./build/tests/channel-tests"