Skip to content

Commit

Permalink
github CI
Browse files Browse the repository at this point in the history
  • Loading branch information
burner committed Oct 12, 2022
1 parent 791e3d8 commit 992eeb2
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 1 deletion.
47 changes: 47 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
name: ci

on:
push:
pull_request:

defaults:
run:
shell: bash

jobs:
Test:
if: "!contains(github.event.head_commit.message, '[skip ci]')"

runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- windows-latest
- ubuntu-latest
- macOS-latest
compiler:
- 'dmd-latest'
- 'ldc-latest'
- 'dmd-beta'
# - 'ldc-beta' # the tests crash
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0

- name: Install compiler
uses: dlang-community/setup-dlang@v1
with:
compiler: ${{ matrix.compiler }}

- name: Test
run: |
dub test
Skip:
if: "contains(github.event.head_commit.message, '[skip ci]')"
runs-on: ubuntu-latest
steps:
- name: Skip CI 🚫
run: echo skip CI
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
FastJWT
=======

![alt text](https://travis-ci.org/burner/fastjwt.svg?branch=master)
<a href="https://code.dlang.org/packages/fastjwt" title="Go to fastjwt"><img src="https://img.shields.io/dub/v/fastjwt.svg" alt="Dub version"></a>

FastJWT is a very fast, vibe.d focused Json Web Token (JWT) implementation that
Expand Down

0 comments on commit 992eeb2

Please sign in to comment.