first attempt to run CI against MySQL/SQL Server
This commit is contained in:
parent
56f5c6724b
commit
d4164c4696
1 changed files with 12 additions and 1 deletions
13
.github/workflows/test.yml
vendored
13
.github/workflows/test.yml
vendored
|
|
@ -2,6 +2,9 @@ name: Pull Request
|
||||||
|
|
||||||
on: [pull_request]
|
on: [pull_request]
|
||||||
|
|
||||||
|
services:
|
||||||
|
- docker
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
@ -27,8 +30,16 @@ jobs:
|
||||||
~/.clojure
|
~/.clojure
|
||||||
~/.cpcache
|
~/.cpcache
|
||||||
key: ${{ runner.os }}-${{ hashFiles('**/deps.edn') }}
|
key: ${{ runner.os }}-${{ hashFiles('**/deps.edn') }}
|
||||||
|
- name: Setup Databases
|
||||||
|
run: docker-compose up -d
|
||||||
|
env:
|
||||||
|
MYSQL_ROOT_PASSWORD: testing
|
||||||
|
- name: Create ClojureTest
|
||||||
|
run: ./run-tests.sh create
|
||||||
|
env:
|
||||||
|
MYSQL_ROOT_PASSWORD: testing
|
||||||
- name: Run Tests
|
- name: Run Tests
|
||||||
run: clojure -T:build test
|
run: ./run-tests.sh
|
||||||
|
|
||||||
build-graalvm-old:
|
build-graalvm-old:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue