File tree Expand file tree Collapse file tree 2 files changed +59
-6
lines changed Expand file tree Collapse file tree 2 files changed +59
-6
lines changed Original file line number Diff line number Diff line change 1+ # Copyright 2020 The casbin Authors. All Rights Reserved.
2+
3+ # Licensed under the Apache License, Version 2.0 (the "License");
4+ # you may not use this file except in compliance with the License.
5+ # You may obtain a copy of the License at
6+
7+ # http://www.apache.org/licenses/LICENSE-2.0
8+
9+ # Unless required by applicable law or agreed to in writing, software
10+ # distributed under the License is distributed on an "AS IS" BASIS,
11+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+ # See the License for the specific language governing permissions and
13+ # limitations under the License.
14+ #
15+
16+ name : CI
17+
18+ on : [push, pull_request]
19+
20+ jobs :
21+ linux :
22+ name : " Linux Ubuntu 20.04"
23+ runs-on : ubuntu-20.04
24+ steps :
25+ - name : Checkout
26+ id : checkout
27+ uses : actions/checkout@v2
28+ - name : Building files
29+ id : building-files
30+ run : |
31+ make
32+ - name : Building library
33+ id : building-lib
34+ run : |
35+ make library
36+ - name : Cleanup
37+ id : cleanup
38+ run : |
39+ make clean
40+
41+ macos :
42+ name : " macOS Catalina 10.15"
43+ runs-on : macos-latest
44+ steps :
45+ - name : Checkout
46+ id : checkout
47+ uses : actions/checkout@v2
48+ - name : Building files
49+ id : building-files
50+ run : |
51+ make
52+ - name : Building library
53+ id : building-lib
54+ run : |
55+ make library
56+ - name : Cleanup
57+ id : cleanup
58+ run : |
59+ make clean
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments