Skip to content

Commit a896871

Browse files
authored
Merge pull request #6 from ThomasTJdev/RefactorSelectIsDeleted
Refactor
2 parents 6c970d2 + 1ffa820 commit a896871

33 files changed

+4775
-861
lines changed

.github/workflows/main.yml

Lines changed: 15 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -2,39 +2,25 @@ name: Build sqlbuilder
22

33
on:
44
push:
5-
branches: [ master ]
5+
branches:
6+
- '*'
67
pull_request:
7-
branches: [ master ]
8+
branches:
9+
- '*'
810

911
jobs:
1012
build:
11-
runs-on: ${{ matrix.os }}
13+
runs-on: ubuntu-latest
1214
strategy:
1315
matrix:
14-
os:
15-
- ubuntu-latest
16-
- windows-latest
17-
- macOS-latest
18-
version:
19-
- stable
20-
16+
nim:
17+
- '1.6.14'
18+
- 'stable'
19+
name: Nim ${{ matrix.nim }} sample
2120
steps:
22-
- uses: actions/checkout@v1
23-
- uses: jiro4989/setup-nim-action@master
24-
with:
25-
nim-version: ${{ matrix.version }}
26-
27-
- name: Print Nim version
28-
run: nim -v
29-
30-
- name: Print Nimble version
31-
run: nimble -v
32-
33-
#- name: Nimble Refresh
34-
# run: nimble -y refresh
35-
36-
#- name: Nimble Install dependencies
37-
# run: nimble -y install --depsOnly
38-
39-
- name: Build binaries
40-
run: nimble install -d:release
21+
- uses: actions/checkout@v3
22+
- name: Setup nim
23+
uses: jiro4989/setup-nim-action@v1
24+
with:
25+
nim-version: ${{ matrix.nim }}
26+
- run: nimble test -Y

.gitignore

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,15 @@
1-
tests/test
2-
src/sqlbuilder
1+
src/sqlbuilder
2+
.vscode
3+
4+
tests/db_general.db
5+
tests/mytest.db
6+
tests/test_string
7+
8+
!tests/t*.nim
9+
tests/*/*
10+
!tests/*/t*.nim
11+
12+
!tests/config.nims
13+
!tests/create_db.nim
14+
15+
tests/test_string/test_dead.nim

0 commit comments

Comments
 (0)