fix artwork download https #4
This file contains 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: so_id3 ci | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
types: [opened, synchronize, reopened] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
env: | |
RUBYOPT: "-w" | |
ALL_WARNINGS: "/tmp/all-warnings" | |
strategy: | |
fail-fast: false | |
matrix: | |
ruby-version: ["3.2", "3.1", "3.0", "2.7", "2.6"] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install OS dependencies | |
run: | | |
sudo apt-get update -qq | |
sudo apt-get install --assume-yes libtag1-dev sox libsox-fmt-mp3 | |
- name: Set up Ruby ${{ matrix.ruby-version }} | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby-version }} | |
bundler-cache: true | |
- name: rspec | |
run: | | |
bundle install | |
bundle exec rspec spec/ 2>> "${ALL_WARNINGS}" |