Skip to content

Commit e1978f7

Browse files
Prepare 0.2.4.2 release. (#37)
Reformatted. Use new .github build workflow. Added custom release workflow. Updated package metadata. --------- Co-authored-by: Andrew Martin <[email protected]>
1 parent 1975c6a commit e1978f7

34 files changed

+930
-1103
lines changed

.github/CODEOWNERS

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
@byteverse/l3c

.github/workflows/build.yaml

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
name: build
2+
on:
3+
pull_request:
4+
branches:
5+
- "*"
6+
7+
jobs:
8+
call-workflow:
9+
uses: byteverse/.github/.github/workflows/build-matrix.yaml@main
10+
with:
11+
cabal-file: country/country.cabal

.github/workflows/release.yaml

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
name: release
2+
on:
3+
push:
4+
tags:
5+
- "*"
6+
7+
jobs:
8+
call-workflow:
9+
uses: byteverse/.github/.github/workflows/release.yaml@main
10+
secrets: inherit

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
.vscode/
12
*.aux
23
cabal-dev
34
.cabal-sandbox

.travis.yml

-146
This file was deleted.

README.md

-23
This file was deleted.

cabal.project

+2
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
11
packages: ./country, ./code-generation
2+
tests: True
3+
benchmarks: True

code-generation/README.md

-1
This file was deleted.

code-generation/Setup.hs

-2
This file was deleted.

0 commit comments

Comments
 (0)