Skip to content

Commit 1bf795a

Browse files
author
Nick Frasser
authored
feat: build improvements (#3)
* feat: build improvements - remove pipenv dependency - add changelog - sync version with upstream oxipng crate * fix: workflow file syntax * fix: reduce redundant workflow actions * fix: correct pip cache dependency path * refactor: more reliable dependency/CI installation * fix: correct workflow file env syntax * fix: test improved venv strategy * fix: workflow syntax * fix: revert pipenv removal * fix: restore redundant workflow run cancellation
1 parent 1b02d90 commit 1bf795a

File tree

6 files changed

+428
-192
lines changed

6 files changed

+428
-192
lines changed

.github/workflows/CI.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,15 @@ name: CI
22

33
on:
44
push:
5+
branches: [ main ]
56
pull_request:
7+
branches: [ main ]
8+
release:
9+
types: [published]
10+
11+
concurrency:
12+
group: ${{ github.head_ref || github.run_id }}
13+
cancel-in-progress: true
614

715
jobs:
816
test:

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Changelog
2+
3+
## 5.0.0
4+
5+
* Sync version with oxipng major releases
6+
7+
## 0.2.0
8+
9+
* Update project metadata
10+
11+
## 0.1.0
12+
13+
* Initial release

0 commit comments

Comments
 (0)