Skip to content

Merge pull request #3 from rubiojr/api-keys #8

Merge pull request #3 from rubiojr/api-keys

Merge pull request #3 from rubiojr/api-keys #8

Workflow file for this run

name: "Integration Tests"
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
merge_group:
branches: [ main ]
env:
OMNIVORE_API_TOKEN: ${{ secrets.OMNIVORE_API_TOKEN }}
jobs:
build:
name: integration-tests
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: '>=1.21.0'
- uses: actions/cache@v4
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Test
run: ./script/test