Skip to content

feat: Add Pop Count #125

feat: Add Pop Count

feat: Add Pop Count #125

Workflow file for this run

name: Exercise tests
on:
workflow_dispatch:
push:
branches:
- main
- master
pull_request:
jobs:
test:
name: Java ${{ matrix.java-version }} - ${{ matrix.os }} - ${{ github.event_name }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
java-version: [ 7, 7.0.181, 8, 8.0.192, 9.0.x, 10, 11.0.x, 11.0.3, 12, 13 ]
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c
- uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java-version }}
- name: Test exercises
run: ./bin/test test-all