Skip to content

Feat/app update

Feat/app update #64

Workflow file for this run

---
name: acceptance tests
on:
pull_request:
types: [ labeled ]
jobs:
test:
if: ${{ github.event.label.name == 'testacc' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.21'
- name: Acceptance Tests
run: make testacc
env:
CC_OAUTH_TOKEN: ${{ secrets.CC_OAUTH_TOKEN }}
CC_OAUTH_SECRET: ${{ secrets.CC_OAUTH_SECRET }}
ORGANISATION: ${{ secrets.ORGANISATION }}
...