Skip to content

Merge pull request #5 from bishabosha/fix-examples #13

Merge pull request #5 from bishabosha/fix-examples

Merge pull request #5 from bishabosha/fix-examples #13

Workflow file for this run

name: CI
on:
push:
branches:
- main
tags:
- "v*"
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: coursier/[email protected]
- uses: VirtusLab/[email protected]
with:
power: true
- name: Check formatting
run: scala-cli fmt . --check
- name: Run unit tests
run: scala-cli test . --cross
publish:
needs: test
if: github.event_name == 'push'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: coursier/[email protected]
- uses: VirtusLab/[email protected]
with:
power: true
- name: Publish
run: scala-cli publish . --cross
env:
PUBLISH_USER: ${{ secrets.PUBLISH_USER }}
PUBLISH_PASSWORD: ${{ secrets.PUBLISH_PASSWORD }}
PUBLISH_SECRET_KEY: ${{ secrets.PUBLISH_SECRET_KEY }}
PUBLISH_SECRET_KEY_PASSWORD: ${{ secrets.PUBLISH_SECRET_KEY_PASSWORD }}
GPG_PASSWORD: ${{ secrets.GPG_PASSWORD }}