Set 'spawn mode' dependency to 0.0.1 #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: Build | |
on: | |
push: | |
branches: ["master"] | |
pull_request: | |
branches: ["master"] | |
# Run the workflow every month. | |
schedule: | |
- cron: '0 0 1 * *' | |
jobs: | |
build: | |
strategy: | |
matrix: | |
erlang: [25, 26, 27] | |
runs-on: ubuntu-latest | |
container: | |
image: erlang:${{ matrix.erlang }} | |
steps: | |
- name: Get the source code | |
uses: actions/checkout@v4 | |
- name: Build the library | |
run: make | |
- name: Run the regression tests | |
run: make eunit |