Bump async-redis from 0.8.1 to 0.10.1 #2303
Workflow file for this run
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: test-unit | |
on: [push] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: compose up | |
run: |- | |
PUID="$(id -u)" PGID="$(id -g)" docker compose -f docker-compose.unit.yml up -d --wait --build | |
- name: show logs | |
if: failure() | |
run: |- | |
docker compose logs rails | |
- name: start recording | |
run: |- | |
docker compose -f docker-compose.unit.yml exec rz curl chromevideo:9494/start | |
- name: run tests | |
run: |- | |
docker compose -f docker-compose.unit.yml exec rz rspec | |
- name: stop recording | |
run: |- | |
docker compose -f docker-compose.unit.yml exec rz curl chromevideo:9494/stop | |
sleep 3 | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: test-video | |
path: vidoutput/out.mp4 | |
if-no-files-found: error |