Skip to content

Commit

Permalink
github workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
sg2342 committed Jun 19, 2024
1 parent 1d6641c commit b001c13
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Common Test

on:
pull_request:
branches:
- 'main'
push:
branches:
- 'main'

jobs:
linux:
name: Test on OTP ${{ matrix.otp_version }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}

strategy:
matrix:
otp_version: [26, 27]
os: [ubuntu-latest]

container:
image: erlang:${{ matrix.otp_version }}

steps:
- uses: actions/checkout@v2
- name: Check
run: rebar3 as test check
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
rfc3394
=====

[![Build Status](https://github.com/sg2342/erl_rfc3394/workflows/Common%20Test/badge.svg)](https://github.com/sg2342/erl_rfc3394/actions?query=branch%3Amain+workflow%3A"Common+Test")

Advanced Encryption Standard (AES) Key Wrap Algorithm

https://datatracker.ietf.org/doc/html/rfc3394.html
Expand Down

0 comments on commit b001c13

Please sign in to comment.