Skip to content

Merge pull request #30 from Angelin01/helm-chart #18

Merge pull request #30 from Angelin01/helm-chart

Merge pull request #30 from Angelin01/helm-chart #18

Workflow file for this run

name: Main
on:
push:
branches: [master]
pull_request:
branches: [master]
env:
CARGO_TERM_COLOR: always
jobs:
build:
name: Build and Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: rustup toolchain install stable --profile minimal --no-self-update
- uses: Swatinem/rust-cache@v2
- run: cargo build --locked --verbose
- run: cargo test --locked
image-build:
name: Build the container image
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: docker build . --file Containerfile --tag pod-director:$(date +%s)