Skip to content

remove dupe asset

remove dupe asset #919

Workflow file for this run

name: Tests
on:
push:
branches: [ main ]
pull_request:
paths:
- "pkg/**"
- "internal/**"
- "infra/**"
- "integration/**"
- "hack/**"
- "cmd/**"
jobs:
build:
name: Test
runs-on: ubuntu-latest
steps:
- name: Install ffmpeg
run: |
sudo apt update
sudo apt install ffmpeg
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: 1.19
stable: false
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Get dependencies
run: go get -v -t -d ./...
- name: Test
run: go test `go list ./... | grep -vE 'integration|internal/models'` -mod=readonly