upload notebooks with Plot altorithm and examples for Jupyter #217
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: ruby-libgd CI | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| native: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Build Docker image (Ruby 4.0.1) | |
| run: docker build -t ruby-libgd-ci . | |
| - name: Run specs | |
| run: | | |
| docker run --rm \ | |
| -e RUBYARCHHDRDIR=/usr/local/include/ruby-4.0.0/x86_64-linux \ | |
| -v "$PWD:/app" \ | |
| -w /app \ | |
| ruby-libgd-ci \ | |
| bash -lc " | |
| bundle install && | |
| cd ext/gd && | |
| ruby extconf.rb && | |
| make && | |
| cd ../.. && | |
| bundle exec rspec | |
| " |