Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: CI Pipeline

on:
push:
branches: [ main, develop ]
pull_request:
branches: [ main, develop ]

jobs:
build:
runs-on: ubuntu-latest

steps:
Comment thread
codebyNorthsteep marked this conversation as resolved.
- name: Checkout code
uses: actions/checkout@v4

- name: Set up Java
uses: actions/setup-java@v4
Comment thread
codebyNorthsteep marked this conversation as resolved.
with:
distribution: 'temurin'
java-version: '25'
cache: 'maven'

- name: Make Maven wrapper executable
run: chmod +x ./mvnw

- name: Build and test with Maven
run: ./mvnw clean verify

Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,11 @@
import org.springframework.context.annotation.Import;

@Import(TestcontainersConfiguration.class)
@SpringBootTest
@SpringBootTest(properties = {
"openrouter.api.key=test-key",
"openrouter.model=test-model",
"openrouter.base-url=test-url"
})
class ProjectBifrostApplicationTests {

@Test
Expand Down
Loading