Merge pull request #1193 from ElixirTeSS/spaces-themes #1319
This file contains hidden or 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: Docker tests | |
| on: [push, pull_request] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@v4 | |
| - name: Setup | |
| run: | | |
| cp env.sample .env | |
| cp config/tess.example.yml config/tess.yml | |
| cp config/secrets.example.yml config/secrets.yml | |
| - name: Build | |
| run: docker compose --profile test build test | |
| - name: Test | |
| run: docker compose --profile test run test |