Skip to content
This repository has been archived by the owner on Feb 1, 2024. It is now read-only.

Update README.md to reflect project transition #2

Update README.md to reflect project transition

Update README.md to reflect project transition #2

Workflow file for this run

name: Build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
schedule:
- cron: "0 5 * * *"
concurrency:
group: "${{ github.ref }}-${{ github.workflow }}"
cancel-in-progress: true
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: '3.1.3'
bundler-cache: true
- name: Install Just
run: sudo snap install --edge --classic just
- name: Install mdl
run: gem install mdl
- name: Lint
run: just lint
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: '3.1.3'
bundler-cache: true
- name: Install Just
run: sudo snap install --edge --classic just
- name: Build
run: just build