Skip to content

Commit

Permalink
Merge pull request #6 from ThomasTJdev/RefactorSelectIsDeleted
Browse files Browse the repository at this point in the history
Refactor
  • Loading branch information
ThomasTJdev authored Dec 21, 2023
2 parents 6c970d2 + 1ffa820 commit a896871
Show file tree
Hide file tree
Showing 33 changed files with 4,775 additions and 861 deletions.
44 changes: 15 additions & 29 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,39 +2,25 @@ name: Build sqlbuilder

on:
push:
branches: [ master ]
branches:
- '*'
pull_request:
branches: [ master ]
branches:
- '*'

jobs:
build:
runs-on: ${{ matrix.os }}
runs-on: ubuntu-latest
strategy:
matrix:
os:
- ubuntu-latest
- windows-latest
- macOS-latest
version:
- stable

nim:
- '1.6.14'
- 'stable'
name: Nim ${{ matrix.nim }} sample
steps:
- uses: actions/checkout@v1
- uses: jiro4989/setup-nim-action@master
with:
nim-version: ${{ matrix.version }}

- name: Print Nim version
run: nim -v

- name: Print Nimble version
run: nimble -v

#- name: Nimble Refresh
# run: nimble -y refresh

#- name: Nimble Install dependencies
# run: nimble -y install --depsOnly

- name: Build binaries
run: nimble install -d:release
- uses: actions/checkout@v3
- name: Setup nim
uses: jiro4989/setup-nim-action@v1
with:
nim-version: ${{ matrix.nim }}
- run: nimble test -Y
17 changes: 15 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,15 @@
tests/test
src/sqlbuilder
src/sqlbuilder
.vscode

tests/db_general.db
tests/mytest.db
tests/test_string

!tests/t*.nim
tests/*/*
!tests/*/t*.nim

!tests/config.nims
!tests/create_db.nim

tests/test_string/test_dead.nim
Loading

0 comments on commit a896871

Please sign in to comment.