correct expectations in the test for 16-2 #65
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: Run all tests | |
on: | |
push: | |
branches: | |
- 'master' | |
tags: | |
- '**' | |
pull_request: | |
types: [opened, synchronize, reopened] | |
workflow_dispatch: | |
schedule: | |
- cron: '30 4 * * SAT' | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install Nix | |
uses: cachix/install-nix-action@v18 | |
with: | |
extra_nix_config: | | |
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }} | |
- uses: workflow/[email protected] | |
with: | |
flakes-from-devshell: true | |
script: zig build test | |
run-with-times: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install Nix | |
uses: cachix/install-nix-action@v18 | |
with: | |
extra_nix_config: | | |
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }} | |
- uses: workflow/[email protected] | |
with: | |
flakes-from-devshell: true | |
script: ./run.sh |