Skip to content

Commit

Permalink
add ci
Browse files Browse the repository at this point in the history
  • Loading branch information
farism committed Sep 11, 2023
1 parent 3c2c3ca commit 4604ff2
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: CI

on:
push:
branches:
- main
tags:
- "*"

pull_request:
branches:
- main

jobs:
build:
name: Build
runs-on: ubuntu-latest

steps:
- name: Download source
uses: actions/checkout@v2

- name: Install Mint
uses: fabasoad/setup-mint-action@main
with:
version: 0.18.0

- name: Install dependencies
run: mint install

- name: Run tests
run: mint test

0 comments on commit 4604ff2

Please sign in to comment.