fix: Use fixed device_id to reduce number of New login to Spotify
e…
#6
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: Run tests | |
on: | |
push: | |
branches: | |
- "main" | |
jobs: | |
docker: | |
runs-on: ubuntu-latest | |
steps: | |
# No checkout step here because build-push-action uses git context by default: | |
# https://github.com/marketplace/actions/build-and-push-docker-images#git-context | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Build and test | |
uses: docker/build-push-action@v5 | |
with: | |
file: Dockerfile.test | |
cache-from: type=gha | |
cache-to: type=gha,mode=max |