Skip to content

Commit a466ccc

Browse files
committed
Update workflows
1 parent 1c6664c commit a466ccc

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/linux.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: linux
2+
3+
on:
4+
push:
5+
branches: [ "main" ]
6+
pull_request:
7+
branches: [ "main" ]
8+
9+
jobs:
10+
tests:
11+
runs-on: ubuntu-24.04
12+
13+
steps:
14+
- name: Checkout
15+
uses: actions/checkout@v4
16+
17+
- name: Build and run tests
18+
uses: ./.github/workflows/tests.yml
19+
with:
20+
os: ${{ github.job.container.image }}
21+
cxx_compilers: '["g++-14", "clang++"]'

0 commit comments

Comments
 (0)