diff --git a/.github/workflows/test_lint_fmt.yml b/.github/workflows/test_lint_fmt.yml index 79825ef8..79de98ef 100644 --- a/.github/workflows/test_lint_fmt.yml +++ b/.github/workflows/test_lint_fmt.yml @@ -20,23 +20,26 @@ jobs: env: RABBITMQ_DEFAULT_USER: goose RABBITMQ_DEFAULT_PASS: top-gun + env: + TERM: xterm-256color + GOOSE_TEST_REDIS_HOST: redis + GOOSE_TEST_REDIS_PORT: 6379 + GOOSE_TEST_RABBITMQ_HOST: rabbitmq + GOOSE_TEST_RABBITMQ_PORT: 5672 + GOOSE_TEST_RABBITMQ_USERNAME: goose + GOOSE_TEST_RABBITMQ_PASSWORD: top-gun steps: - uses: actions/checkout@v3 - name: Check formatting run: clj -M:cljfmt check - name: Run tests run: clj -X:test - env: - GIT_FORCE_COLOR: "1" - GOOSE_TEST_REDIS_HOST: redis - GOOSE_TEST_REDIS_PORT: 6379 - GOOSE_TEST_RABBITMQ_HOST: rabbitmq - GOOSE_TEST_RABBITMQ_PORT: 5672 - GOOSE_TEST_RABBITMQ_USERNAME: goose - GOOSE_TEST_RABBITMQ_PASSWORD: top-gun + lint: runs-on: ubuntu-20.04 container: cljkondo/clj-kondo:2022.10.05-alpine + env: + TERM: xterm-256color steps: - uses: actions/checkout@v3 - name: Lint src