Skip to content

added a small script to create the curation_pretext commandline #215

added a small script to create the curation_pretext commandline

added a small script to create the curation_pretext commandline #215

Workflow file for this run

name: CI
on:
push:
pull_request:
branches: [master]
jobs:
check_format:
runs-on: ubuntu-latest
container:
image: crystallang/crystal
steps:
- uses: actions/checkout@v4
- name: Format
run: crystal tool format --check
coding_standards:
runs-on: ubuntu-latest
container:
image: crystallang/crystal
steps:
- uses: actions/checkout@v4
- name: Crystal Ameba Linter
uses: crystal-ameba/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
test:
runs-on: ubuntu-latest
container:
image: crystallang/crystal:latest-alpine
steps:
- uses: actions/checkout@v4
- name: Install Shards
run: shards install
- name: Build
run: shards build --production --release --static --no-debug
- name: Release
uses: actions/upload-artifact@v4
with:
name: curation_tools.zip
path: bin/*
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}