fix: eofs #14
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
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" |