Skip to content

Commit

Permalink
Implemented CI pipeline via GitHub Action Workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
hvalfangst committed Dec 27, 2023
1 parent c50535b commit d47d4c7
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Build

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

env:
CARGO_TERM_COLOR: always

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Build
run: |
sudo apt install musl-tools
rustup target add x86_64-unknown-linux-musl
cargo build --release --target=x86_64-unknown-linux-musl

0 comments on commit d47d4c7

Please sign in to comment.