Avoid unnecessery checkout #9
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: Integration tests | |
on: | |
push: | |
branches: | |
- 'main' | |
pull_request: | |
types: [opened, synchronize, reopened] | |
branches: | |
- 'main' | |
paths: | |
- 'golang/**' | |
- '.github/workflows/golang-ci.yaml' | |
env: | |
GOLANG_VERSION: '1.20' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
prepare-template: | |
name: Prepare Cookiecutter Template | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: '3.x' | |
- name: Install Cookiecutter | |
run: pip install cookiecutter | |
- name: Run Cookiecutter | |
run: cookiecutter --no-input -o $(pwd)/.data/ $(pwd)/golang/ | |
- name: Temporarily save cookiecutter output | |
uses: actions/upload-artifact@v2 | |
with: | |
name: golang-src | |
path: .data/MyGolangApp | |
retention-days: 1 | |
test-go-executable: | |
name: Build and Test Golang Executable | |
runs-on: ubuntu-22.04 | |
needs: prepare-template | |
steps: | |
- name: Setup Golang | |
uses: actions/setup-go@fac708d6674e30b6ba41289acaab6d4b75aa0753 # v4.0.0 | |
with: | |
go-version: ${{ env.GOLANG_VERSION }} | |
- name: Retrieve saved cookiecutter output | |
uses: actions/download-artifact@v2 | |
with: | |
name: golang-src | |
path: .data/MyGolangApp | |
- name: Download all Go modules | |
working-directory: .data/MyGolangApp | |
run: go get | |
- name: Run integration test | |
working-directory: .data/MyGolangApp | |
run: | | |
go build main.go | |
./main & | |
sleep 1 | |
curl --connect-timeout 10 http://0.0.0.0:8080 | |