Skip to content

Commit

Permalink
ci: Remove emojis
Browse files Browse the repository at this point in the history
  • Loading branch information
nwellnhof committed Aug 20, 2024
1 parent 548c912 commit e4b4a2b
Showing 1 changed file with 6 additions and 9 deletions.
15 changes: 6 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,14 @@
name: CI
name: CI
on: [push, pull_request]
jobs:
test:
strategy:
fail-fast: false
matrix:
os:
- { icon: 🐧, name: ubuntu }
- { icon: 🍎, name: macos }
- { icon: 🪟, name: windows }
os: [ 'ubuntu', 'macos', 'windows' ]
perl: [ '5.38', '5.36', '5.34', '5.32', '5.30', '5.28', '5.26', '5.24', '5.22', '5.20', '5.18', '5.16', '5.14', '5.12', '5.10', '5.8' ]
name: 🐪 Perl ${{ matrix.perl }} on ${{ matrix.os.icon }}
runs-on: ${{ matrix.os.name }}-latest
name: Perl ${{ matrix.perl }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}-latest
steps:
- uses: actions/checkout@v4

Expand Down Expand Up @@ -98,7 +95,7 @@ jobs:
run: CMARK_VERSION=0.21.0 .github/bin/build.sh

apt:
name: 📦 cmark on 🐧
name: Ubuntu packages
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -113,7 +110,7 @@ jobs:
perl Makefile.PL && make test TEST_VERBOSE=1
brew:
name: 📦 cmark on 🍎
name: Homebrew packages
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit e4b4a2b

Please sign in to comment.