8000 Require Inko 0.18.0 or newer · yorickpeterse/clogs@030ae53 · GitHub
[go: up one dir, main page]

Skip to content

Require Inko 0.18.0 or newer #54

Require Inko 0.18.0 or newer

Require Inko 0.18.0 or newer #54

Workflow file for this run

---
name: Push
on:
push:
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
jobs:
fmt:
runs-on: ubuntu-latest
container:
image: ghcr.io/inko-lang/inko:latest
steps:
- run: microdnf install --quiet --assumeyes tar git
- uses: actions/checkout@v4
- run: inko --version
- run: inko fmt --check
test:
runs-on: ubuntu-latest
container:
image: ghcr.io/inko-lang/inko:latest
steps:
- run: microdnf install --quiet --assumeyes tar git
- uses: actions/checkout@v4
- name: Configuring Git
run: |
git config --global user.email git@example.com
git config --global user.name git
- run: inko --version
- run: inko test
0