Skip to content

Commit

Permalink
Add workflow to validate built packages
Browse files Browse the repository at this point in the history
Taucher2003 committed Jul 31, 2024
1 parent bb88f72 commit ea1cead
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: Build packages

on:
push:

jobs:
rubygems:
runs-on: ubuntu-latest

defaults:
run:
shell: bash
working-directory: build/ruby

steps:
# Set up
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.2.2'
- name: Install gems
run: bundle install
- name: Generate ruby
run: bundle exec rake generate_ruby:all
- name: Run tests
run: bundle exec rspec

crates:
runs-on: ubuntu-latest

defaults:
run:
shell: bash
working-directory: build/rust

steps:
# Set up
- uses: actions/checkout@v4
- name: Setup rust
run: rustup update --no-self-update stable
- name: Build create
run: cargo package

0 comments on commit ea1cead

Please sign in to comment.