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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |