Skip to content
Merged
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
13 changes: 13 additions & 0 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ jobs:
quality:
name: Code Quality
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout code
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
Expand Down Expand Up @@ -112,6 +114,8 @@ jobs:
test-julia:
name: Julia Tests
runs-on: ubuntu-latest
permissions:
contents: read
strategy:
matrix:
julia-version: ['1.9', '1.10', 'nightly']
Expand Down Expand Up @@ -151,6 +155,8 @@ jobs:
test-rust:
name: Rust Tests
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout code
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
Expand Down Expand Up @@ -285,6 +291,8 @@ jobs:
name: SonarCloud Analysis
runs-on: ubuntu-latest
needs: [test-julia]
permissions:
contents: read
steps:
- name: Checkout code
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
Expand Down Expand Up @@ -316,6 +324,8 @@ jobs:
name: Integration Tests
runs-on: ubuntu-latest
needs: [container-build]
permissions:
contents: read
services:
redis:
image: redis:alpine
Expand Down Expand Up @@ -372,6 +382,8 @@ jobs:
runs-on: ubuntu-latest
needs: [integration, security, sonarcloud]
if: github.ref == 'refs/heads/main' && github.event_name == 'push'
permissions:
contents: read
environment:
name: production
url: https://robot-vacuum.example.com
Expand Down Expand Up @@ -400,6 +412,7 @@ jobs:
runs-on: ubuntu-latest
needs: [quality, security, test-julia, test-rust, container-build, integration]
if: always()
permissions: {}
steps:
- name: Check job statuses
id: check
Expand Down
Loading