Skip to content
This repository was archived by the owner on Sep 3, 2024. It is now read-only.

Commit 85efcd3

Browse files
Merge pull request #96 from SQLStreamStore/testing-actions
Testing Actions
2 parents 47bebb3 + ac63dd3 commit 85efcd3

File tree

1 file changed

+47
-0
lines changed

1 file changed

+47
-0
lines changed

.github/workflows/ci.yml

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
name: Build
2+
3+
on:
4+
pull_request:
5+
push:
6+
branches:
7+
- master
8+
9+
jobs:
10+
continuous-integration:
11+
strategy:
12+
fail-fast: false
13+
matrix:
14+
env:
15+
- library-version: 1.2.0-beta.4
16+
container-runtime-version: 2.2.5
17+
container-runtime: alpine3.9
18+
runtime: alpine-x64
19+
- library-version: 1.2.0-beta.4
20+
container-runtime-version: 2.2.5
21+
container-runtime: alpine3.8
22+
runtime: alpine-x64
23+
- library-version: 1.2.0-beta.4
24+
container-runtime-version: 2.2.5
25+
container-runtime: stretch-slim
26+
runtime: debian.9-x64
27+
- library-version: 1.2.0-beta.4
28+
container-runtime-version: 2.2.5
29+
container-runtime: bionic
30+
runtime: ubuntu.18.04-x64
31+
runs-on: ubuntu-latest
32+
name: continuous-integration/github/${{ matrix.env.container-runtime }}
33+
steps:
34+
- name: filter
35+
if: github.event_name == 'pull_request'
36+
uses: actions/bin/filter@master
37+
with:
38+
action: "opened|synchronize|reopened"
39+
- name: checkout
40+
uses: actions/checkout@master
41+
- name: build
42+
run: "./build.sh"
43+
env:
44+
LIBRARY_VERSION: ${{ matrix.env.library-version }}
45+
CONTAINER_RUNTIME_VERSION: ${{ matrix.env.container-runtime-version }}
46+
CONTAINER_RUNTIME: ${{ matrix.env.container-runtime }}
47+
RUNTIME: ${{ matrix.env.runtime }}

0 commit comments

Comments
 (0)