Skip to content

Commit bb4efb3

Browse files
committed
Update CI
1 parent eefc279 commit bb4efb3

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/build_and_test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ name: Build and Test
44

55
on:
66
push:
7-
branches: [ dev, testing ]
87
paths-ignore: # Skip the workflow if only documentation files are changed
98
- '**/*.md'
109
- '**/LICENSE'
1110
pull_request:
1211
branches: [ main ]
12+
workflow_dispatch:
1313

1414
jobs:
1515
Build-and-Test:
@@ -20,7 +20,7 @@ jobs:
2020
# fail-fast: false
2121

2222
matrix:
23-
os: [ubuntu-latest, macos-latest]
23+
os: [ubuntu-22.04, macos-13]
2424
build_type: [Debug]
2525
compiler: [ {cpp: g++, c: gcc}, {cpp: clang++, c: clang} ]
2626

quicked/src/quicked.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,7 @@ quicked_status_t run_quicked(
305305
return QUICKED_WIP;
306306
}
307307

308-
quicked_params_t quicked_default_params()
308+
quicked_params_t quicked_default_params(void)
309309
{
310310
return (quicked_params_t){
311311
.algo = QUICKED,

0 commit comments

Comments
 (0)