Skip to content

fix: Add creditsafe reject (#25) #145

fix: Add creditsafe reject (#25)

fix: Add creditsafe reject (#25) #145

Workflow file for this run

on: [push]
jobs:
build:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Run Linter 🧐
shell: bash
run: make lint
- name: Configure git πŸ”§
run: |
git config --global url."https://${{ secrets.KIVRABOT }}@github.com/kivra/".insteadOf "[email protected]:kivra/"
git config --global url."https://${{ secrets.KIVRABOT }}@github.com/kivra".insteadOf "https://github.com/kivra"
- name: Run Erlang Tests πŸƒπŸΎ
shell: bash
run: make test-erl
- name: Run Go Tests πŸƒπŸ½β€β™€οΈ
shell: bash
run: make test-go
- name: Run python Tests πŸƒπŸΎ
shell: bash
run: make test-python
release:
if: github.ref == 'refs/heads/main' && startsWith(github.event.head_commit.message, 'no-release:') == false
needs: build
runs-on: ubuntu-latest
steps:
- name: Bump version and push tag
id: tag_version
uses: kivra/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
- name: Create a GitHub release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ steps.tag_version.outputs.new_tag }}
release_name: Release ${{ steps.tag_version.outputs.new_tag }}
body: ${{ steps.tag_version.outputs.changelog }}