Skip to content

chore: remove athr_ovs_atomic.h file ๐Ÿ—‘๏ธ #96

chore: remove athr_ovs_atomic.h file ๐Ÿ—‘๏ธ

chore: remove athr_ovs_atomic.h file ๐Ÿ—‘๏ธ #96

Workflow file for this run

name: Test
on: push
jobs:
test-unix:
name: Test on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-22.04, ubuntu-24.04, macos-13, macos-14, macos-15]
steps:
- uses: actions/checkout@v4
- name: make
run: make
- name: make check
run: make check
test-win32:
name: Test on windows-2022
runs-on: windows-2022
steps:
- uses: actions/checkout@v4
- name: install make
run: choco install make
- name: make
run: mingw32-make
- name: make check
run: mingw32-make check