refactor: do not rtrim
strings without need
#8
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: | |
- macos-latest | |
- ubuntu-latest | |
- windows-latest | |
steps: | |
- name: Install dependencies with Homebrew | |
if: matrix.os == 'macos-latest' | |
run: | | |
brew install php | |
- name: 'Disable `autocrlf` in Git' | |
run: git config --global core.autocrlf false | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up just task runner | |
uses: extractions/setup-just@v2 | |
- name: Run tests | |
run: | | |
just test |