Remove :CHECK-DNS-P and DNS lookups (pending) #10229
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: Tests | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
types: [ opened, synchronize, closed ] | |
jobs: | |
test: | |
name: ${{matrix.renderer}} on ${{matrix.os}} | |
strategy: | |
matrix: | |
renderer: [gi-gtk,electron] | |
os: [ubuntu-latest,macos-latest] | |
exclude: | |
- os: macos-latest | |
renderer: gi-gtk | |
runs-on: ${{matrix.os}} | |
steps: | |
- name: Cache git folder | |
uses: actions/cache@v4 | |
with: | |
path: .git | |
key: git-folder | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
show-progress: 'false' | |
submodules: 'true' | |
- name: Install nix | |
uses: cachix/install-nix-action@v22 | |
with: | |
nix_path: nixpkgs=channel:nixos-unstable | |
- name: Compile ${{matrix.renderer}} port on ${{matrix.os}} | |
run: nix-shell build-scripts/shell-${{matrix.renderer}}.nix --run 'make all NYXT_RENDERER=${{matrix.renderer}}' | |
- name: Test ${{matrix.renderer}} port on ${{matrix.os}} | |
env: | |
NASDF_NON_INTERACTIVE_TESTS: true | |
# It runs the tests for system nyxt, not nyxt/${{matrix.renderer}}. | |
run: nix-shell build-scripts/shell-${{matrix.renderer}}.nix --run 'make check' |