Skip to content

fix artwork download https #4

fix artwork download https

fix artwork download https #4

Workflow file for this run

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}"