Skip to content

Commit

Permalink
Move to shared build workflow.
Browse files Browse the repository at this point in the history
  • Loading branch information
lukaszraczylo committed Dec 2, 2021
1 parent 7edac1a commit 944f878
Showing 1 changed file with 6 additions and 62 deletions.
68 changes: 6 additions & 62 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,65 +9,9 @@ on:
- "*"

jobs:
prepare:
name: Preparing build context
runs-on: ubuntu-latest
outputs:
RELEASE_VERSION: ${{ steps.semver.outputs.semantic_version }}
steps:
- name: Checkout repo
uses: actions/checkout@v2
with:
fetch-depth: '0'
- name: Semver run
id: semver
uses: lukaszraczylo/semver-generator@v1
with:
config_file: semver.yaml
repository_local: true

tests:
name: Run unit tests
runs-on: ubuntu-latest
container: golang:1-buster
env:
CI: true
steps:
- name: Checkout repo
uses: actions/checkout@v2
- name: Setup GoLang
uses: actions/setup-go@v2
with:
stable: 'true'
- name: Test code
run: |
git config --global url."https://${{ secrets.GHCR_TOKEN }}:x-oauth-basic@github.com/${{ github.repository_owner }}".insteadOf "https://github.com/${{ github.repository_owner }}";
make test CI_RUN=${CI}
- uses: codecov/codecov-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos
files: coverage.out

release:
name: Create Release
runs-on: ubuntu-latest
needs: [ prepare, tests ]
steps:
- name: Checkout code
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Get list of the commits since last release
run: |
echo "$(git log $(git describe --tags --abbrev=0)..HEAD --pretty=format:"%h %s")" > .release_notes
- name: Create Release
id: create_release
uses: actions/create-release@main
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: v${{ needs.prepare.outputs.RELEASE_VERSION }}
release_name: v${{ needs.prepare.outputs.RELEASE_VERSION }}
body_path: .release_notes
draft: false
prerelease: ${{ github.ref != 'refs/heads/master' && github.ref != 'refs/heads/main' }}
shared:
uses: telegram-bot-app/ci-scripts/.github/workflows/library-test-publish.yaml@main
with:
enable-code-scans: true
secrets:
ghcr-token: ${{ secrets.GHCR_TOKEN }}

0 comments on commit 944f878

Please sign in to comment.