Skip to content

Commit

Permalink
Introduce build test
Browse files Browse the repository at this point in the history
  • Loading branch information
lucemans committed Jan 2, 2024
1 parent 5fae642 commit 3cbadc8
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: 🏗️ Build

on:
push:

jobs:
deploy:
runs-on: ubuntu-20.04
env:
SCCACHE_GHA_ENABLED: "true"
RUSTC_WRAPPER: "sccache"
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Run sccache-cache
uses: mozilla-actions/[email protected]
with:
version: "v0.7.4"

- name: Build
working-directory: ./service
run: cargo build

0 comments on commit 3cbadc8

Please sign in to comment.