Skip to content

Lockfree FIFO: add get_move() #148

Lockfree FIFO: add get_move()

Lockfree FIFO: add get_move() #148

Workflow file for this run

name: Run unit tests
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
workflow_dispatch:
jobs:
build:
strategy:
matrix:
os: [ubuntu-22.04]
cxx: [g++-12, g++-11, clang++-15, clang++-14]
include:
- os: macos-latest
cxx: clang++
- os: ubuntu-24.04
cxx: g++-13
- os: ubuntu-24.04
cxx: clang++-16
- os: ubuntu-24.04
cxx: clang++-17
- os: ubuntu-24.04
cxx: clang++-18
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Build and run tests
run: CXX=${{ matrix.cxx }} make -f tests/Makefile