We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 581510c commit a3a6830Copy full SHA for a3a6830
2 files changed
.github/workflows/build.yml
@@ -0,0 +1,21 @@
1
+name: Build
2
+
3
+on:
4
+ push:
5
+ branches: [master]
6
+ pull_request:
7
8
9
+jobs:
10
+ build:
11
+ strategy:
12
+ fail-fast: false
13
+ matrix:
14
+ include:
15
+ - os: ubuntu-latest
16
+ - os: macos-latest
17
+ runs-on: ${{ matrix.os }}
18
+ steps:
19
+ - uses: actions/checkout@v4
20
+ - name: Build & Test
21
+ run: make examples test -j
README.md
@@ -1,5 +1,7 @@
# extlib: c extended library
+[](https://github.com/bamless/extlib/actions/workflows/build.yml)
extlib is a header-only library that implements common data structures and algorithms that are not
provided by the c standard library.
0 commit comments