Skip to content

Commit

Permalink
Merge branch 'freak12techno:main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
keefertaylor authored Jul 29, 2024
2 parents a08b1a0 + f178a0e commit 3d8fcd6
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Penumbra LCD CI

on:
pull_request:
branches: [ main ]
push:
branches: [ main ]

jobs:
penumbra-ci:
runs-on: ubuntu-latest
steps:
- name: Check Out Repository
uses: actions/checkout@v4

# See: https://github.com/actions/cache/blob/main/examples.md#rust---cargo
- uses: actions/cache@v3
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}

- name: Build Penumbra LCD
run: cargo build --release

0 comments on commit 3d8fcd6

Please sign in to comment.