Merge pull request #21 from Wenzel/ci/add_build

ci: add build job
This commit is contained in:
Sergej Schumilo 2023-05-05 12:23:43 +02:00 committed by GitHub
commit c8a72dc3b3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

21
.github/workflows/ci.yml vendored Normal file
View File

@ -0,0 +1,21 @@
name: CI
on:
push:
branches:
- 'main'
paths-ignore:
- '**/README.md'
pull_request:
paths-ignore:
- '**/README.md'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
- run: cargo build
working-directory: libnyx