Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
dd5de77
e2e version matrix update
LissaGreense May 16, 2024
5575287
Refactor that makes code shiny
LissaGreense May 16, 2024
ecb2045
Fix parser test pointer
LissaGreense May 16, 2024
c224496
Final refactor - improve select structure
LissaGreense May 22, 2024
414c56c
Fix delete command
LissaGreense May 22, 2024
2a6a1a0
Add Drop Function
ixior462 May 28, 2024
cd8e55a
Merge pull request #16 from LissaGreense/feature/drop
ixior462 May 28, 2024
78246a2
Add error handling for parser
ixior462 Jun 11, 2024
0e8cd06
second part of error handling
LissaGreense Jun 11, 2024
da92b90
Merge pull request #17 from LissaGreense/feature/error-handling
ixior462 Jun 11, 2024
2b91d01
Adds LIMIT and OFFSET keywords :D
LissaGreense Jun 11, 2024
14c009d
Add Update command
LissaGreense Jun 27, 2024
251a6f7
Merge pull request #19 from LissaGreense/feature/update-command
ixior462 Jun 27, 2024
dc6c57d
Feature/error handling tests (#20)
ixior462 Jul 11, 2024
fcb0118
Add Distinct select implementation (#21)
LissaGreense Aug 6, 2024
efa0622
Feature/joins (#22)
ixior462 Oct 8, 2024
e2e9191
Aggregate functions (#23)
LissaGreense Nov 7, 2024
3646858
Feature - "IN" and "NOTIN" condition (#24)
LissaGreense Nov 19, 2024
af34c3d
Feature/null insertion (#25)
ixior462 Dec 4, 2024
940f5fd
Add apostrophe validation errors (#26)
LissaGreense Dec 10, 2024
8d6f5a1
Add gopher to README.md (#28)
ixior462 Jan 16, 2025
2f0a67e
Refactore e2e tests (#27)
ixior462 Jan 16, 2025
87bed28
Feature - apostrophe error validate (#29)
LissaGreense Jan 16, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 0 additions & 37 deletions .github/expected_results/end2end.txt

This file was deleted.

6 changes: 3 additions & 3 deletions .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,19 +17,19 @@ jobs:
packages: write
id-token: write
steps:

- name: Checkout repository
uses: actions/checkout@v3

- name: Docker build
run: docker build . --tag ${{ env.IMAGE_NAME }}:${{ env.IMAGE_TAG }}

- name: Docker login
run: docker login -u ${{ secrets.DOCKERHUB_USERNAME }} -p ${{ secrets.DOCKERHUB_TOKEN }}

- name: Docker tag
run: docker image tag ${{ env.IMAGE_NAME }}:${{ env.IMAGE_TAG }} ${{ env.REGISTRY }}/${{ secrets.DOCKERHUB_USERNAME }}/${{ env.IMAGE_NAME }}

- name: Docker push
run: docker push ${{ env.REGISTRY }}/${{ secrets.DOCKERHUB_USERNAME }}/${{ env.IMAGE_NAME }}

Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/end2end-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
go: [ '1.16.15', '1.17.11' ]
go: [ '1.21.13', '1.22.7', '1.23.1' ]
steps:
- uses: actions/checkout@v3

Expand All @@ -25,8 +25,8 @@ jobs:
- name: Build
run: go build -v

- name: Run
run: ./GO4SQL -file test_file > output.txt
- name: Make Test Script Executable
run: chmod +x e2e/e2e_test.sh

- name: Check Result
run: diff output.txt ./.github/expected_results/end2end.txt
- name: Run Tests
run: e2e/e2e_test.sh
2 changes: 1 addition & 1 deletion .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
go: [ '1.16.15', '1.17.11' ]
go: [ '1.21.13', '1.22.7', '1.23.1' ]
steps:
- uses: actions/checkout@v3

Expand Down
Loading
Loading