Skip to content

Commit

Permalink
workflow: Add api-server-rest workflow
Browse files Browse the repository at this point in the history
Add basic workflow for appi-server-rest to test
the Makefile running on multiple platforms and environments
and running unit tests

Signed-off-by: stevenhorsman <[email protected]>
  • Loading branch information
stevenhorsman authored and fitzthum committed Sep 13, 2023
1 parent b01062b commit 914251a
Showing 1 changed file with 65 additions and 0 deletions.
65 changes: 65 additions & 0 deletions .github/workflows/api-server-rest-basic.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
name: api-server-rest basic build and unit tests

on:
push:
branches:
- "main"
paths:
- 'api-server-rest/**'
- '.github/workflows/api-server-rest-basic.yml'
- 'Cargo.toml'
pull_request:
paths:
- 'api-server-rest/**'
- '.github/workflows/api-server-rest-basic.yml'
- 'Cargo.toml'
create:
workflow_dispatch:

jobs:
basic_ci:
name: Check
defaults:
run:
working-directory: ./api-server-rest
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
rust:
- stable
steps:
- name: Code checkout
uses: actions/checkout@v3
with:
fetch-depth: 1

- name: Install Rust toolchain (${{ matrix.rust }})
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: ${{ matrix.rust }}
override: true
components: rustfmt, clippy

- name: Install protoc
run: |
sudo apt-get update && sudo apt-get install -y protobuf-compiler
- name: Build and install with default features
run: |
make && make install
- name: Musl build with default features
run: |
make LIBC=musl
- name: s390x build
run:
make ARCH=s390x

- name: Run cargo test
uses: actions-rs/cargo@v1
with:
command: test
args: -p api-server-rest

0 comments on commit 914251a

Please sign in to comment.