test #38
Workflow file for this run
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: Test Github Action | |
on: [push, pull_request] | |
jobs: | |
test: | |
strategy: | |
fail-fast: false | |
matrix: | |
texlive_version: [latest] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Git repository | |
uses: actions/checkout@v4 | |
- name: Test Action | |
uses: ./ | |
with: | |
scheme: small | |
texlive_version: ${{ matrix.texlive_version }} | |
run: | | |
echo "CPU count: $(nproc)" | |
echo "::group::Package install" | |
apk add \ | |
make | |
echo "::endgroup::" | |
env | |
unset $(env | egrep '^GITHUB|^RUNNER|^ACTIONS|^HOST|^CI|^INPUT|°SHLVL' |awk -F'=' '{print $1}') | |
echo "Cleaned environment:" | |
env |