Skip to content

Commit

Permalink
Add build workflow
Browse files Browse the repository at this point in the history
Signed-off-by: Albert Esteve <aesteve@redhat.com>
  • Loading branch information
aesteve-rh committed Nov 20, 2023
1 parent 8904d76 commit 4d2c941
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/reuse.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
# SPDX-FileCopyrightText: 2022 Free Software Foundation Europe e.V. <https://fsfe.org>
#
# SPDX-License-Identifier: CC0-1.0
# SPDX-FileCopyrightText: Red Hat, Inc.
# SPDX-License-Identifier: LGPL-3.0-or-later

name: REUSE Compliance Check

Expand Down
23 changes: 23 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# SPDX-FileCopyrightText: Red Hat, Inc.
# SPDX-License-Identifier: LGPL-3.0-or-later

name: Build

on:
push:
branches: [ $default-branch ]
pull_request:
branches: [ $default-branch ]

env:
CARGO_TERM_COLOR: always

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose

0 comments on commit 4d2c941

Please sign in to comment.