Skip to content

Commit

Permalink
move workflow from main to service-eat
Browse files Browse the repository at this point in the history
  • Loading branch information
GuillaumeGANGLOFF committed Apr 7, 2024
1 parent 19b564a commit 79d297e
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/rust-eat.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Rust-eat

on:
push:
branches:
- service-eat
workflow_dispatch:

env:
CARGO_TERM_COLOR: always

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Debug
run: echo "Workflow triggered"
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose

0 comments on commit 79d297e

Please sign in to comment.