.github/workflows/test.yml in vagrant-vyos-1.1.10 vs .github/workflows/test.yml in vagrant-vyos-1.1.12

- old
+ new

@@ -6,16 +6,19 @@ build: name: test runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - name: Set up Ruby 2.6 + - uses: actions/checkout@v4 + - name: Set up Ruby uses: ruby/setup-ruby@v1 with: - ruby-version: 2.6 - + ruby-version: 3.3 - name: Test run: | bundle config path vendor/bundle bundle install --jobs 4 --retry 3 bundle exec rake spec + - name: Upload coverage to Codecov + uses: codecov/codecov-action@v4 + with: + token: ${{ secrets.CODECOV_TOKEN }}