VirtualSize in list image Docker API is depricated #282
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: Acceptance testing (using bats tests) | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
types: [opened, synchronize, closed] | |
jobs: | |
test: | |
strategy: | |
matrix: | |
go: ['1.21'] | |
runs-on: 'ubuntu-latest' | |
steps: | |
- uses: actions/[email protected] | |
with: | |
fetch-depth: 0 | |
submodules: recursive | |
- uses: actions/[email protected] | |
with: | |
go-version: ${{ matrix.go }} | |
- name: Build Slim (quick dev) | |
run: make build_dev | |
- name: Run the bats test suite | |
run: ./test/bats/bin/bats test/debug.bats | |
continue-on-error: true # At least until we rewrite the tests to reflect recent changes in the debug command |