Skip to content

Commit

Permalink
get tSQLt and extract to folder
Browse files Browse the repository at this point in the history
  • Loading branch information
markpatterson27 committed Aug 23, 2020
1 parent 79d79aa commit 0dbcbb9
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions .github/workflows/classroom.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,20 @@
- uses: actions/checkout@v2

- name: get tSQLt and extract
run: |
run: |
sudo apt-get install unzip
mkdir tSQLt
wget -c https://github.com/tSQLt-org/tSQLt/archive/build-V1.0.5873.27393(2014)-successful-2014.tar.gz -O - | tar -xz -C ./tSQLt/
wget http://tsqlt.org/download/tsqlt/ -O tSQLt.zip
ls -al
unzip tSQLt.zip -d tSQLt/
ls -al tSQLt/
- name: check files
run: ls -al tSQLt

- name: setup SQL Server instance
run: |
docker run -e 'ACCEPT_EULA=Y' -e 'SA_PASSWORD=Pa$$w0rd1234' -p 1433:1433 -d mcr.microsoft.com/mssql/server:2019-latest
# - name: setup SQL Server instance
# run: |
# docker run -e 'ACCEPT_EULA=Y' -e 'SA_PASSWORD=Pa$$w0rd1234' -p 1433:1433 -d mcr.microsoft.com/mssql/server:2019-latest

# get tsqlt and extract
# create dockerfile
Expand Down

0 comments on commit 0dbcbb9

Please sign in to comment.