(maint) Update clojure/test.check to match other projects #18
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: lein_test | |
on: | |
workflow_dispatch: | |
push: | |
branches: main | |
paths: ['src/**','test/**','project.clj'] | |
pull_request: | |
types: [opened, reopened, edited, synchronize] | |
paths: ['src/**','test/**','project.clj'] | |
env: | |
JDBCUTIL_DBNAME: //127.0.0.1:5432/jdbc_util_test | |
JDBCUTIL_DBUSER: jdbc_util_test | |
JDBCUTIL_DBPASS: foobar | |
PGHOST: localhost | |
PGPORT: 5432 | |
PGPASSWORD: foobar | |
jobs: | |
run-lein-tests: | |
name: lein test :all | |
runs-on: ubuntu-latest | |
services: | |
postgres: | |
image: postgres:14 | |
env: | |
POSTGRES_PASSWORD: foobar | |
options: >- | |
--health-cmd pg_isready | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 | |
ports: | |
- 5432:5432 | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v3 | |
- name: Configure postgres | |
run: | | |
psql -c "create user jdbc_util_test with createdb createrole password 'foobar'" -U postgres | |
psql -c "create user migrator with createdb createrole password 'foobar'" -U postgres | |
psql -c 'create database jdbc_util_test owner jdbc_util_test' -U postgres | |
- name: Setup java | |
uses: actions/setup-java@v3 | |
with: | |
distribution: temurin | |
java-version: 11 | |
- name: Install Clojure tools | |
uses: DeLaGuardo/setup-clojure@12.5 | |
with: | |
cli: latest # Clojure CLI based on tools.deps | |
lein: latest # Leiningen | |
boot: latest # Boot.clj | |
bb: latest # Babashka | |
clj-kondo: latest # Clj-kondo | |
cljstyle: latest # cljstyle | |
zprint: latest # zprint | |
- name: Run lein tests | |
run: lein test :all |