We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9ce8ef7 + 57af2eb commit 50e857eCopy full SHA for 50e857e
.github/workflows/ci.yml
@@ -0,0 +1,33 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ branches: [ "master" ]
6
+ pull_request:
7
8
9
+jobs:
10
+ build:
11
12
+ runs-on: ubuntu-latest
13
14
+ steps:
15
+ - uses: actions/checkout@v3
16
+ - name: Setup .NET
17
+ uses: actions/setup-dotnet@v2
18
+ with:
19
+ dotnet-version: 6.0.x
20
+ - name: Install dependencies
21
+ run: |
22
+ sudo apt-get update
23
+ sudo apt-get install libmemcached-dev memcached
24
+ - name: Start memcached daemons
25
26
+ memcached -d -p 11211
27
+ - name: Add memcached host to /etc/hosts
28
29
+ echo "127.0.0.1 memcached" | sudo tee -a /etc/hosts
30
+ - name: Build
31
+ run: ./build.sh
32
+ - name: Test
33
+ run: ./test.sh
0 commit comments